我目前正在尝试编写一个XML文件,该文件使用" System.getProperty(" user.dir")"的路径。我正在使用Spring 2.0并且有以下代码,我想编辑它以便我可以以某种方式调用user.dir路径,这个例子应该只显示我想用XML文件做什么,当然它不能像这样工作:
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>file:System.getProperty("user.dir")/PATH...</value>
<value>file:System.getProperty("user.dir")/PATH...</value>
</list>
</property>
</bean>
答案 0 :(得分:0)
好的,我只是通过结合其他网站的不同方法找到答案:
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>file:${user.dir}/PATH...</value>
<value>file:${user.dir}/PATH...</value>
</list>
</property>