Consume RESTful APIs using WebClient
In this article, we will use WebClient to consume the RESTful APIs. WebClient was introduced in Spring 5. It is[…]
Read moreAmplify your java knowledge with javagyansite
In this article, we will use WebClient to consume the RESTful APIs. WebClient was introduced in Spring 5. It is[…]
Read more
Please first go through the below link for understanding of bean scopes in Spring framework before you delve further into[…]
Read more
Swagger 2 is an open source project used to describe and document RESTful APIs. Springfox is popular Swagger 2 implementation[…]
Read more
The above diagram depicts the Spring MVC Execution Flow. The DispatcherServlet is a front controller like it provides a single[…]
Read more
MVC stands for Model View Controller. MVC is a popular design pattern used for developing web applications. MVC segregates the[…]
Read more
Spring boot actuator provides in-built HTTP endpoints available for different monitoring and management purposes. It provides several features like health[…]
Read more
@PropertySource provides a convenient and declarative mechanism for adding a PropertySource to Spring’s Environment. This is used in conjunction with[…]
Read more
@Controller: This annotation designates the bean class as the controller in the presentation layer (Spring MVC Controller). @RestController was introduced[…]
Read more
Defining Components @Component:It is a basic auto component scan annotation, it indicates annotated class is a auto scan component. It is[…]
Read more
Technology Stack Spring Boot Spring MVC Spring Data JPA Thymeleaf Project Structure pom.xml Add the below in pom.xml spring-boot-starter-parent –[…]
Read more