我在这里遇到一个简单的问题。我有两个属性文件我想读取来创建两个数据源。然而,那些属性文件具有完全相同的键!我可以使用以下方法读取这两个文件:
<context:property-placeholder
location="classpath:foo1.properties,classpath:foo2.properties"/>
但后来我无法访问正确的值:
<bean id="myDataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="driverClassName" value="${driver}" /> <!-- Which one? -->
<property name="url" value="${url}" /> <!-- Which one? -->
...
</bean>
如何阅读我的属性,以便我可以使用${foo1.driver}
等变量并知道调用哪一个?
感谢您的帮助!
答案 0 :(得分:6)
尝试这样的事情(未经测试):
<bean id="config1" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="ignoreUnresolvablePlaceholders" value="true"/>
<property name="placeholderPrefix" value="${foo1."/>
<property name="locations">
<list>
<value>classpath:foo1.properties</value>
</list>
</property>
</bean>
<bean id="config2" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="ignoreUnresolvablePlaceholders" value="false"/>
<property name="placeholderPrefix" value="${foo2."/>
<property name="locations">
<list>
<value>classpath:foo2.properties</value>
</list>
</property>
</bean>
答案 1 :(得分:1)
我想我要做的是扩展PropertyPlaceHolderConfigurer。
对我而言,您似乎必须覆盖方法PropertiesLoaderSupport.loadProperties(Properties)
我要做的是添加属性“前缀”
public void setPrefixes(List<String> prefixes){
this.prefixes = prefixes;
}
在阅读“属性”资源时迭代这些前缀。