I use something like this:
Code:
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE"/>
<property name="searchSystemEnvironment" value="true"/>
<property name="ignoreResourceNotFound" value="true"/>
<property name="ignoreUnresolvablePlaceholders" value="true"/>
<property name="locations">
<list>
<value>classpath*:/xxx_application.properties</value>
<value>classpath*:/xxx_jdbc.properties</value>
<value>file:////etc/xxx_core.properties</value>
</list>
</property>
</bean>
--
Consultant/Contractor
Stockholm, Sweden