1. Overview
One of the ways of configuring Spring applications is using YAML configuration files.
In this quick tutorial, weβll configure different profiles for a simple Spring Boot application using YAML.
Further reading:
A Quick Guide to Spring @Value
Using Spring @Value With Defaults
How to Inject a Property Value Into a Class Not Managed by Spring?
2. Spring YAML File
Spring profiles help enable Spring Applications to define different properties for different environments.
Letβs take a look at a simple YAML file that contains two profiles. The three dashes separating the two profiles indicate the start of a new document, so all the profiles can be described in the same YAML file.
The relative path of the application.yml file is /myApplication/src/main/resources/application.yml:
spring:
config:
activate:
on-profile: test
name: test-YAML
environment: testing
enabled: false
servers:
- www.abc.test.com
- www.xyz.test.com
---
spring:
config:
activate:
on-profile: prod
name: prod-YAML
environment: production
enabled: true
servers:
- www.abc.com
- www.xyz.com
Note that this setup doesnβt imply that any of these profiles will be active when we start our application. The properties defined in the profile-specific documents wonβt be loaded unless we explicitly indicate it; by default, the only active profile will be βdefault.β
3. Binding YAML to a Config Class
To load a set of related properties from a properties file, we will create a bean class:
@Configuration
@EnableConfigurationProperties
@ConfigurationProperties
public class YAMLConfig {
private String name;
private String environment;
private boolean enabled;
private List<String> servers = new ArrayList<>();
// standard getters and setters
}
The annotations used here are:
- @Configuration β this marks the class as a source of bean definitions
- @ConfigurationProperties β this binds and validates the external configurations to a configuration class
- @EnableConfigurationProperties β this annotation is used to enable @ConfigurationProperties annotated beans in the Spring application
4. Accessing the YAML Properties
To access the YAML properties, weβll create an object of the YAMLConfig class, and access the properties using that object.
In the properties file, weβll set the spring.profiles.active environment variable to prod. If we donβt define this property, only the βdefaultβ profile will be active.
The relative path for the properties file is /myApplication/src/main/resources/application.properties:
spring.profiles.active=prod
In this example, weβll display the properties using the CommandLineRunner:
@SpringBootApplication
public class MyApplication implements CommandLineRunner {
@Autowired
private YAMLConfig myConfig;
public static void main(String[] args) {
SpringApplication app = new SpringApplication(MyApplication.class);
app.run();
}
public void run(String... args) throws Exception {
System.out.println("using environment: " + myConfig.getEnvironment());
System.out.println("name: " + myConfig.getName());
System.out.println("enabled:" + myConfig.isEnabled());
System.out.println("servers: " + myConfig.getServers());
}
}
The output on the command line:
using environment: production
name: prod-YAML
enabled: true
servers: [www.abc.com, www.xyz.com]
5. YAML Property Overriding
In Spring Boot, YAML files can be overridden by other YAML properties files.
Prior to version 2.4.0, YAML properties were overridden by properties files in the following locations, in order of highest precedence first:
- Profilesβ properties placed outside the packaged jar
- Profilesβ properties packaged inside the packaged jar
- Application properties placed outside the packaged jar
- Application properties packaged inside the packaged jar
As of Spring Boot 2.4, external files always override packaged files, regardless of whether theyβre profile-specific or not.
6. Conclusion
In this brief article, we learned how to configure properties in Spring Boot applications using YAML. We also discussed the property overriding rules followed by Spring Boot for YAML files.
