我们曾经有一种方法可以从类路径上的文件中加载属性:
<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 程序的脚本存在问题。谢谢你的帮忙。我将要求删除这个问题,因为原始代码毕竟有效。感谢您的帮助。