Spring @PropertySource annotation
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 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
1. Overview In this article, we will learn to implement the Spring ConfigurationProperties using Kotlin data class. 2. Kotlin data class for ConfigurationProperties Consider that… Read More »Spring ConfigurationProperties Kotlin data class
1. Overview In this article, we will learn the differences between @ConfigurationProperties vs @Value. To learn more about @ConfigurationProperties and externalizing the properties, refer to… Read More »@ConfigurationProperties vs @Value differences