Spring Boot Actuator
Spring boot actuator provides in-built HTTP endpoints available for different monitoring and management purposes. It provides several features like health[…]
Read moreAmplify your java knowledge with javagyansite
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 moreDefining Components @Component:It is a basic auto component scan annotation, it indicates annotated class is a auto scan component. It is[…]
Read moreTechnology Stack Spring Boot Spring MVC Spring Data JPA Thymeleaf Project Structure pom.xml Add the below in pom.xml spring-boot-starter-parent –[…]
Read moreTechnology Stack Spring Boot Spring MVC Thymeleaf Project Structure pom.xml Add the below in pom.xml spring-boot-starter-parent – add this as[…]
Read moreTechnology Stack Project Structure pom.xml Add the below in pom.xml Add the below spring boot starters Application class annotated with @SpringBootApplication[…]
Read morePlease go through Garbage Collector(GC) before diving into the below discussion. An object becomes garbage when it is no longer reachable from[…]
Read more@SpringBootApplication annotation : indicates a configuration class that declares one or more @Bean methods and also triggers auto-configuration and component[…]
Read more@EnableAutoConfiguration annotation enables Auto Configuration for our Spring Boot Application. Spring checks the spring.factories files under the folder META-INF in[…]
Read more