我的应用程序需要知道可以存储其数据的目录的路径。我尝试设置 Java 系统属性并将该变量用作 Spring XML 中的占位符。
在 Eclipse 中,我将该属性添加到我的运行配置环境中,它工作得很好。Spring 将${dataDir}解析为正确的路径。
但是当我使用 Maven2 ( mvn test -DdataDir=c:/data ) 测试应用程序时,Spring 抱怨它无法解析占位符。
我的 Spring XML 如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd">
<!-- Allows me to use system properties in this file -->
<bean id="propertyPlaceholderConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" />
<bean id="xmlConfiguration" class="org.apache.commons.configuration.XMLConfiguration">
<constructor-arg index="0">
<value>${dataDir}/conf/config.xml</value>
</constructor-arg>
</bean>
</beans>
为什么不将该系统属性传递给 Spring?我究竟做错了什么?感谢您的任何建议!
编辑:当然,你是对的:${baseDir} 应该是 ${dataDir}。但这只是这个问题的一个错字,而不是真正的代码。
我之前尝试过MAVEN_OPTS但它也不起作用......