Did you know? DZone has great portals for Python, Cloud, NoSQL, and HTML5!

Lives in the UK. Likes blogging, cycling and eating lemon drizzle cake. Roger is a DZone MVB and is not an employee of DZone and has posted 72 posts at DZone. You can read more from them at their website. View Full User Profile

Autowiring Property Values into Spring Beans

10.31.2011
Email
Views: 3194
  • submit to reddit
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

Tags:
Published at DZone with permission of Roger Hughes, author and DZone MVB.

(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)

Comments

Robert Craft replied on Thu, 2012/01/26 - 5:34am

In Spring, you can use @Autowired annotation to auto wire bean on the setter method, constructor or a field. Moreover, it can autowired property in a particular bean. The @Autowired annotation is auto wire the bean by matching data type.

Spring Framework

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.