DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • How To Build Web Service Using Spring Boot 2.x
  • Visually Designing Views for Java Web Apps
  • How to Activate New User Accounts by Email
  • How To Read the Properties File Outside the Jar in Spring Boot

Trending

  • Engineering Closed-Loop Graph-RAG Systems, Part 1: From Retrieval to Reasoning
  • Parallel Kafka Batch Processing With Kotlin Coroutines in Spring Boot
  • Implementing the Planning Pattern With Java Enterprise and LangChain4j
  • The Hidden Cost of AI-Generated Frontend Code
  1. DZone
  2. Coding
  3. Frameworks
  4. Autowiring Property Values into Spring Beans

Autowiring Property Values into Spring Beans

By 
Roger Hughes user avatar
Roger Hughes
·
Nov. 01, 11 · Interview
Likes (1)
Comment
Save
Tweet
Share
140.1K Views

Join the DZone community and get the full member experience.

Join For Free

Most people know that you can use @Autowired to tell Spring to inject one object into another when it loads your application context. A lesser known nugget of information is that you can also use the @Value annotation to inject values from a property file into a bean’s attributes.

To demonstrate this requires a few bits and pieces, including a property file:

jdbc.driverClassName=oracle.jdbc.OracleDriver
jdbc.url=jdbc:oracle:thin:@on-the-beach:1521:mysid
jdbc.username=john
jdbc.password=lennon

In this example, I’ve got a some simple datasource connection details for an Oracle database, which will be injected into a fake datasource class AutowiredFakaSource:

@Component
public class AutowiredFakaSource {

  @Value("${jdbc.driverClassName}")
  private String driverClassName;

  @Value("${jdbc.url}")
  private String url;

  @Value("${jdbc.username}")
  private String userName;

  @Value("${jdbc.password}")
  private String password;

  @Value("${java.io.tmpdir}")
  private String tmpDir;

  public AutowiredFakaSource() {
  }

  public String execute() {

    System.out.println("Execute FakaSource");
    return "A Result";
  }

  public String getDriverClassName() {
    return driverClassName;
  }

  public String getUrl() {
    return url;
  }

  public String getUserName() {
    return userName;
  }

  public String getPassword() {
    return password;
  }

  public String getTmpDir() {
    return tmpDir;
  }
}

In terms of this blog, AutowiredFakaSource doesn’t really need to do anything, it just has to be a bean with some attributes. The crux of the whole thing lies in the @Value annotations:

@Value("${jdbc.username}")

...which shows that a value from a property file is referenced using its name and the ${} notation.

The JUnit test below demonstrates that all this works okay.

@Test
  public void testAutowiredPropertyPlaceHolder() {

    System.out.println("Autowired Property PlaceHolder Test.");
    ApplicationContext ctx = new ClassPathXmlApplicationContext("autowired_property_place_holder.xml");

    AutowiredFakaSource fakeDataSource = ctx.getBean(AutowiredFakaSource.class);

    assertEquals("oracle.jdbc.OracleDriver", fakeDataSource.getDriverClassName());
    assertEquals("jdbc:oracle:thin:@on-the-beach:1521:mysid", fakeDataSource.getUrl());
    assertEquals("john", fakeDataSource.getUserName());
    assertEquals("lennon", fakeDataSource.getPassword());
    assertNotNull(fakeDataSource.getTmpDir());
    String expected = System.getProperty("java.io.tmpdir");
    assertEquals(expected, fakeDataSource.getTmpDir());
  }

On last thing to note is the XML configuration file. In the example below, you can see that the XML contains two entries. The first is the PropertyPlaceholderConfigurer class that loads the properties from the jdbc.properties file and second is the

<context:component-scan base-package="miscellaneous.property_placeholder" />

XML element that enables autowiring.

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:context="http://www.springframework.org/schema/context"
 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
  http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">

 <!-- Configurer that replaces ${...} placeholders with values from a properties file -->
 <!-- (in this case, JDBC-related settings for the dataSource definition below) -->
 <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  <property name="locations">
   <list>
    <value>jdbc.properties</value>
    <!-- List other property files here -->
    <!-- value>mail.properties</value -->
   </list>
  </property>
 </bean>

 <!-- Enable autowiring -->
  <context:component-scan base-package="miscillaneous.property_placeholder" /> 

</beans>

Finally, eagle eyed readers will have spotted that the @Value annotation also allows you to load system properties. In this example I’ve loaded the Java temp directory path using:

@Value("${java.io.tmpdir}")

…and then tested it using the final assert in the unit test:

 

From http://www.captaindebug.com/2011/10/autowiring-property-values-into-spring_28.html

Property (programming) Spring Framework

Opinions expressed by DZone contributors are their own.

Related

  • How To Build Web Service Using Spring Boot 2.x
  • Visually Designing Views for Java Web Apps
  • How to Activate New User Accounts by Email
  • How To Read the Properties File Outside the Jar in Spring Boot

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook