如何在文件系统上使用property-placeholder文件

时间:2012-05-10 19:36:04

标签: java spring

我们曾经有办法从类路径上的文件加载属性:

<context:property-placeholder location="classpath:myConfigFile.properties" />

并且效果很好。但是现在我们想要从不在类路径中的系统上的特定文件加载属性。我们希望能够动态加载文件,因此我们使用Java环境变量来填充它。我将在下面举一个简单的例子:

在Java中:

  System.setProperty("my.prop.file", "/path/to/myConfigFile.properties");

在Spring XML中:

<context:property-placeholder location="${my.prop.file}" />

我也是这样尝试过的,感谢Luciano的一个想法:

<context:property-placeholder properties-ref="prop" />

<util:properties id="prop" location="reso"/>

<bean id="reso" class="org.springframework.core.io.FileSystemResource">
    <constructor-arg index="0" value="${my.prop.file}" />
</bean>

我尝试过的一切都失败了。无论我将my.prop.file设置为什么。最棒的热门歌曲包括:

<context:property-placeholder location="/path/to/myConfigFile.properties" />
(ClassNotFoundException: .path.to.myConfigFile.properties)

<context:property-placeholder location="file:/path/to/myConfigFile.properties" />
(ClassNotFoundException: file:.path.to.myConfigFile.properties)

<context:property-placeholder location="file:///path/to/myConfigFile.properties" />
(ClassNotFoundException: file:...path.to.myConfigFile.properties)

如何使用属性占位符与文件系统上的位置而不是类路径?我们使用的是Spring 3.0.5。

事实证明,运行Java程序的脚本存在加载spring文件的问题。谢谢你的帮忙。我将要求删除此问题,因为原始代码毕竟有效。 谢谢你的帮助。

2 个答案:

答案 0 :(得分:15)

这对我有用:

<context:property-placeholder location="file:/path/to/myConfigFile.properties" />

但是(有趣的是)没有:

<context:property-placeholder location="#{ systemProperties['foo'] }" />

我得到了

java.io.FileNotFoundException: Could not open ServletContext resource [/#{ systemProperties['foo'] }]

您无法将属性占位符${..}与PropertyPlaceholderConfigurer的定义一起使用。这是鸡蛋前的鸡肉。

您可以随时继承PropertyPlaceholderConfigurer,并让它做任何您想做的事情(例如,在setLocations()方法中调用@PostConstruct。然后,使用:<context:property-placeholder> >

<bean class="com.foo.MyPropertyPlaceholderConfigurer"/>

答案 1 :(得分:6)

这是怎么回事?

<context:property-placeholder properties-ref="prop" />

<util:properties id="prop" location="reso"/>

<bean id="reso" class="org.springframework.core.io.FileSystemResource">
    <constructor-arg index="0" value="/yourpathandfile" />
</bean>