Friday, 28 October 2011

Autowiring Property Values into Spring Beans

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:

2 comments:

Anonymous said...

Saved my day !!
Thank you very much :)

P

Mustafa Nural said...

Enabling autowiring can easily be overlooked. Thanks for specifically mentioning this.