我正在使用java Spring 3.x
我想从OS环境变量加载上下文占位符属性文件。 以下是我的代码
<context:property-placeholder location="file:#{ systemProperties['RESOURCE_PATH']}/jdbc.properties,
其中RESOURCE_PATH是我的linux环境变量,但我找不到文件异常。
任何帮助表示感谢。
答案 0 :(得分:1)
系统属性是Java系统属性,而不是OS。请尝试使用变量systemEnvironment
。