Created
November 22, 2012 20:06
-
-
Save jdeoliveira/4132739 to your computer and use it in GitHub Desktop.
Multiple config files with Spring PropertyPlaceHolderConfigurer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<spring:bean id="property-placeholder" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" > | |
<spring:property name="locations"> | |
<spring:list> | |
<spring:value>classpath:first.properties</spring:value> | |
<spring:value>classpath:second.properties</spring:value> | |
</spring:list> | |
</spring:property> | |
</spring:bean> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment