
Baeldung Pro comes with both absolutely No-Ads as well as finally with Dark Mode, for a clean learning experience:
Once the early-adopter seats are all used, the price will go up and stay at $33/year.
Last updated: August 2, 2022
In this tutorial, we’ll discuss how to use environment variables in Spring Boot’s application.properties and application.yml. Then, we’ll learn how to refer to those properties in the code.
Let’s define a global environment variable called JAVA_HOME with the value “C:\Program Files\Java\jdk-11.0.14“.
To use this variable in Spring Boot’s application.properties, we need to surround it with braces:
java.home=${JAVA_HOME}
We can also use the system properties in the same way. For instance, on Windows, an OS property is defined by default:
environment.name=${OS}
It’s also possible to combine several variable values. Let’s define another environment variable, HELLO_BAELDUNG, with the value “Hello Baeldung“. We can now concatenate our two variables:
baeldung.presentation=${HELLO_BAELDUNG}. Java is installed in the folder: ${JAVA_HOME}
The property baeldung.presentation now contains the following text: “Hello Baeldung. Java is installed in the folder: C:\Program Files\Java\jdk-11.0.14“.
This way, our properties have different values depending on the environment.
Given that we start a Spring context, we’ll now see how we can inject the property value into our code.
First, we can use the @Value annotation. @Value handles setter, constructor, and field injections:
@Value("${baeldung.presentation}")
private String baeldungPresentation;
We can also get the value of the property via Spring’s Environment. We’ll need to autowire it:
@Autowired
private Environment environment;
The property value can now be retrieved, thanks to the getProperty() method:
environment.getProperty("baeldung.presentation")
The @ConfigurationProperties annotation is very useful if we want to group properties together. We’ll define a Component that will gather all properties with a given prefix, in our case baeldung. Then, we can define a setter for each property. The name of the setter is the rest of the name of the property. In our case, we have only one, called presentation:
@Component
@ConfigurationProperties(prefix = "baeldung")
public class BaeldungProperties {
private String presentation;
public String getPresentation() {
return presentation;
}
public void setPresentation(String presentation) {
this.presentation = presentation;
}
}
We can now autowire a BaeldungProperties object:
@Autowired
private BaeldungProperties baeldungProperties;
Finally, to get the value of a specific property, we need to use the corresponding getter:
baeldungProperties.getPresentation()
Just like application.properties, application.yml is a configuration file that defines various properties and settings for an application. To use an environment variable, we need to declare its name in the property placeholder.
Let’s see an example application.yml file with a property placeholder and the variable name:
spring:
datasource:
url: ${DATABASE_URL}
The example above shows we’re trying to import a database URL inside our Spring Boot application. The ${DATABASE_URL} expression prompts Spring Boot to look for an environment variable with the name DATABASE_URL.
To define an environment variable in application.yml, we must start with a dollar sign, followed by an opening curly brace, the name of the environment variable, and a closing curly brace. All these combined make up the property placeholder and the environment variable name.
Furthermore, we can use the environment-specific property in our code, just like we do with application.properties. We can inject the value using the @Value annotation. Also, we can use the Environment class. Finally, we can use the @ConfigurationProperties annotation.
Starting with Spring Boot 3.5.0-M2, we can now load multiple configuration properties from a single environment variable. Traditionally, we often define separate environment variables for each property. Now, we can consolidate related properties into a single environment variable.
For example, let’s define an environment variable named DATABASE_CONFIG:
export DATABASE_CONFIG="
DATABASE_URL=jdbc:h2:mem:testdb
USERNAME=sa
PASSWORD=password
"
The format above mirrors the key-value pair structure used in application.properties files.
Alternatively, we can define the properties in the environment variable using the YAML format:
export DATABASE_CONFIG=$(cat <<EOF
DATABASE_URL: jdbc:h2:mem:testdb
USERNAME: sa
PASSWORD: password
EOF
)
Spring Boot supports both the properties format and the YAML format content within an environment variable when using the spring.config.import property.
Next, let’s reference the environment variable in the application.properties file by using the spring.config.import property:
spring.config.import=env:DATABASE_CONFIG
Here, we use the env keyword with the environment variable name, prompting Spring Boot to load properties from the specified environment variable.
Finally, let’s use some of the properties in our database configuration as a placeholder:
spring.datasource.url=${DATABASE_URL}
spring.datasource.username=${USERNAME}
spring.datasource.password=${PASSWORD}
In the code above, we use the properties defined in the DATABASE_CONFIG environment, avoiding defining each property as a separate environment variable.
In this article, we learned how to define properties with different values depending on the environment and use them in the code. Additionally, we saw how to define environment variables in application.properties and application.yml files. Finally, we looked at examples of injecting the defined properties into the example code.