9

我在这里面临一个简单的问题。我有两个要读取的属性文件来创建两个数据源。然而,这些属性文件具有完全相同的键!我可以使用以下方法读取这两个文件:

<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}并知道调用了哪个变量?

感谢您的帮助!

4

2 回答 2

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>
于 2012-05-03T14:48:20.093 回答
1

我想我要做的是扩展 PropertyPlaceHolderConfigurer。

对我来说,您似乎必须重写该方法PropertiesLoaderSupport.loadProperties(Properties)

我要做的是添加一个属性“前缀”

public void setPrefixes(List<String> prefixes){
    this.prefixes = prefixes;
}

并在读取属性资源时遍历这些前缀。

于 2012-05-03T14:48:29.380 回答