Wednesday, January 16, 2013

Spring Property Placeholder Configurer - A few not so obvious options

Spring's PropertySourcesPlaceholderConfigurer is used for externalizing properties from the Spring bean definitions defined in XML or using Java Config. There are a few options that PlaceholderConfigurer supports that are not obvious from the documentation but are interesting and could be useful.

To start with, an example from Spring's documentation, consider a properties file with information to configure a datasource:
jdbc.driverClassName=org.hsqldb.jdbcDriver
jdbc.url=jdbc:hsqldb:hsql://production:9002
jdbc.username=sa
jdbc.password=root

The PropertySourcesPlaceholderConfigurer is configured using a custom namespace:
<context:property-placeholder location="database.properties"/>

A datasource bean making use of these properties can be defined using XML based bean definition this way:

<bean id="dataSource" destroy-method="close"
    class="org.apache.commons.dbcp.BasicDataSource">
  <property name="driverClassName" value="${jdbc.driverClassName}"/>
  <property name="url" value="${jdbc.url}"/>
  <property name="username" value="${jdbc.username}"/>
  <property name="password" value="${jdbc.password}"/>
</bean>

and using Java based configuration this way:
@Value("${jdbc.driverClassName}") private String driverClassName;
@Value("${jdbc.url}")             private String dbUrl;
@Value("${jdbc.username}")        private String dbUserName;
@Value("${jdbc.password}")        private String dbPassword;

@Bean
public BasicDataSource dataSource() {
 BasicDataSource dataSource = new BasicDataSource();
 dataSource.setDriverClassName(driverClassName);
 dataSource.setUrl(dbUrl);
 dataSource.setUsername(dbUserName);
 dataSource.setPassword(dbPassword);
 return dataSource;
}

The not so obvious options are:

First is the support for default values. Say for eg, if "sa" is to be provided as default for the jdbc user name, the way to do it is this way(using a ${propertyName:default} syntax) :

<property name="username" value="${jdbc.username:sa}"/>

or with Java Config:

..
..
@Value("${jdbc.username:sa}") private String dbUserName;

@Bean
public BasicDataSource dataSource() {
..
}


Second is the support for nested property resolution, for eg consider the following properties:
phase.properties file -
phase=qa
jdbc.username.qa=qasa
jdbc.username.dev=devsa

and using the "phase" property as part of another property in XML bean definition in this nested way:
<property name="username" value="${jdbc.username.${phase}}"/>

These options could be very useful for place holder based configuration.


2 comments:

  1. Thanks for explaining @Value
    Can we achieve this using @Value in Java.
    I have a requirement like this.
    I have to pass phase in generic way may be I pass a locale value to Phase

    now in properties file
    jdbc.username.UK=UK
    jdbc.username.US=US

    can we achieve this using @Value annotation?

    thanks
    Joseph

    ReplyDelete
    Replies
    1. Joseph,

      I feel your expecting this to achieve in java using @Value?
      some thing like this @Value("${jdbc.username.${phase}}") private String dbUserName;

      Delete