Enterprise Java

Quick tip: Referencing other Properties in Spring

In Spring property (or yaml) files we can reference other properties using the ${..} syntax.

For example:

1
2
3
external.host=https://api.external.com
external.productService=${external.host}/product-service
external.orderService=${external.host}/order-service

If we now access the external.productService property (e.g. by using the @Value annotation) we will get the value https://api.external.com/product-service.

For example:

1
2
@Value("${external.productService}")
private String productServiceUrl; // https://api.external.com/product-service

This way we can avoid duplication of commonly used values in property and yaml files.

Published on Java Code Geeks with permission by Michael Scharhag, partner at our JCG program. See the original article here: Quick tip: Referencing other Properties in Spring

Opinions expressed by Java Code Geeks contributors are their own.

Do you want to know how to develop your skillset to become a Java Rockstar?
Subscribe to our newsletter to start Rocking right now!
To get you started we give you our best selling eBooks for FREE!
1. JPA Mini Book
2. JVM Troubleshooting Guide
3. JUnit Tutorial for Unit Testing
4. Java Annotations Tutorial
5. Java Interview Questions
6. Spring Interview Questions
7. Android UI Design
and many more ....
I agree to the Terms and Privacy Policy

Michael Scharhag

Michael Scharhag is a Java Developer, Blogger and technology enthusiast. Particularly interested in Java related technologies including Java EE, Spring, Groovy and Grails.
Subscribe
Notify of
guest


This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Back to top button