@Configuration Annotation in Spring Boot
@Configuration is a Spring annotation that indicates that a class declares one or more @Bean methods and may be processed by the Spring container to generate bean definitions and service requests for those beans at runtime, for example: @Configuration public class AppConfig { @Bean public MyService myService() { return new MyServiceImpl(); } } Here, the…
Read More @Configuration Annotation in Spring Boot