作为Spring属性的完整路径

时间:2012-06-27 14:13:10

标签: java spring

说,我在Spring上下文中有以下bean:

<bean class="some.class.BlabBlahBlah">
    <property name="location" value="classpath:somefile.xml"/>
</bean> 

目前somefile.xml位于src/main/java,但我想将其放在文件系统中的某个位置。有没有办法做到这一点?我尝试设置完整路径而不是此classpath:,但它不起作用。提前谢谢。

1 个答案:

答案 0 :(得分:8)

reference (Table 4.1),您应该使用文件系统资源路径:

<property name="location" value="file:/path/to/file.xml" />