Article
If you've read anything about Spring, developed a project, or was even remotely interested in how it works, you've been introduced to the @RequestMapping annotation. It's one of the basic annotations in Spring which maps HTTP requests (URLs) with methods: @RequestMapping("/") public void helloWorld() { return "Hello World!...
David Landup
In this article, we'll introduce you to Spring Cloud Stream, which is a framework for building message-driven microservice applications that are connected by a common messaging brokers like RabbitMQ, Apache Kafka, etc. Spring Cloud Stream is built on top of existing Spring frameworks like Spring Messaging and Spring Integration. Although...
Dhananjay Singh
Machine Learning is gaining popularity and usage over the globe. It has already drastically changed the way certain applications are built and will likely continue to be a huge (and increasing) part of our daily lives. There's no sugarcoating it, Machine Learning isn't simple. It's pretty daunting and can seem...
This is the second article in the series of articles on Concurrency in Java. In the previous article, we learnt about the Executor pool and various categories of Executors in Java. In this article, we will learn what the synchronized keyword is and how we can use that in a...
Chandan Singh
Several tools can drive the web browser the way a real user would do like navigating to different pages, interacting with the elements of the page and capturing some data. This process is called Web Browser Automation. What you can do with web browser automation is totally on your imaginations...
Shadab Ansari
In this article, we'll introduce you to Spring Cloud Netflix Turbine. It aggregates multiple Hystrix Metrics Streams into one, so that it could be displayed into a single dashboard view. To give a small introduction to Hystrix. In a microservice architecture, we have many small applications that talk to each...
Hypertext Transfer Protocol (HTTP) is an application-layer protocol, which without exaggeration, is pretty much the backbone of Internet browsing as we know it. It's used for transferring hypermedia documents between the client and the server and is an essential part of every single web application, including any APIs that use...
Modifiers are keywords that let us fine-tune access to our class and its members, their scope, and behavior in certain situations. For example, we can control which classes/objects can access certain members of our class, whether a class can be inherited or not, whether we can override a method...
Olivera Popović
© 2013-2025 Stack Abuse. All rights reserved.