我还没有把头包裹在Spring周围,如果这个问题没有意义,请纠正我......
我有一个PropertyPlaceholderConfigurer
<bean id="rdbmPropertiesPlacholder" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" lazy-init="false">
<property name="location" value="classpath:/properties/rdbm.properties" />
</bean>
我猜注射豆了吗?
<bean id="PortalDb" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="${hibernate.connection.driver_class}" />
<property name="url" value="${hibernate.connection.url}" />
<property name="username" value="${hibernate.connection.username}" />
<property name="password" value="${hibernate.connection.password}" />
...
我想要的是第二个占位符,使用用户名/密码指向不同的属性文件,以便我可以将属性拆分为两个不同的文件。然后数据库连接信息可以与db用户名/密码分开,我可以控制一个而不是另一个。
我基本上尝试使用不同的id和文件复制rdbmPropertiesPlaceholder并尝试访问属性,但它不起作用。
此代码来自uPortal开源Web门户项目。
答案 0 :(得分:28)
使用此表示法可以指定多个文件:
<bean id="rdbmPropertiesPlacholder" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" lazy-init="false">
<property name="locations">
<list>
<value>classpath:/properties/rdbm.properties</value>
<value>classpath:/properties/passwords.properties</value>
</list>
</property>
</bean>
propertyplaceholderconfigurerer只是合并了所有这些,看起来只有一个,所以你的bean定义不知道属性的来源。
答案 1 :(得分:17)
org.springframework.beans.factory.config.PropertyPlaceholderConfigurer可以做到这一点(已经回答过。您可能想要做的是使用名称间距,以便您可以从两个文件中引用同名的属性而不用ambiquity。举个例子,你可以这样做:
<bean id="generalPropertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="classpath:/properties/general.properties"/>
</bean>
<bean id="db.PropertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="classpath:/properties/rdbm.properties" />
<property name="placeholderPrefix" value="$db{" />
<property name="placeholderSuffix" value="}" />
</bean>
在您的上下文文件中,您现在可以使用 $ {someproperty} 引用常规属性,并使用 $ db {someproperty} 引用rdbm属性。
这将使您的上下文文件更清晰,更清晰。