18

我们曾经有一种方法可以从类路径上的文件中加载属性:

<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。

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

4

2 回答 2

16

这对我有用:

<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"/>
于 2012-05-11T03:49:27.453 回答
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>
于 2012-05-10T19:55:14.447 回答