Posts related to tag: properties


@ConfigurationProperties Annotation in Spring Boot

@ConfigurationProperties annotation is used to pulling up a “group of configuration values” from the properties file. @ConfigurationProperties annotation is also […] Continue reading »

How to read properties file in Spring

Spring framework gives us two annotation @PropertySource and @Value which make the reading properties file values super easy. @PropertySource annotation […] Continue reading »

How to inject properties file data to bean in Spring

This tutorial will help you to inject the properties file data to the bean or class. The properties file stores […] Continue reading »