BeanFactory lazy loading
1. Overview In this article, we will learn about the lazy loading of beans in BeanFactory. 2. BeanFactory The Spring framework comes with two IOC… Read More »BeanFactory lazy loading
1. Overview In this article, we will learn about the lazy loading of beans in BeanFactory. 2. BeanFactory The Spring framework comes with two IOC… Read More »BeanFactory lazy loading
1. Overview In this article, we will learn the differences between the ApplicationContext vs BeanFactory. The Spring framework comes with two IOC containers: BeanFactory ApplicationContext… Read More »ApplicationContext vs BeanFactory
1. Overview In this article, we will learn about the Spring @PropertySource annotation. You can use the @PropertySource annotation to externalize your configuration to a… Read More »Spring @PropertySource annotation
1. Overview In this article, we will learn to implement nested configuration properties in a Spring boot application. To learn more about using the external… Read More »Nested configuration properties Spring Boot
1. Overview In this article, we will learn to define the default value for ConfigurationProperties. 2. ConfigurationProperties You can add the @ConfigurationProperties annotation to a class definition… Read More »ConfigurationProperties default value