说,我在Spring上下文中有以下bean:
<bean class="some.class.BlabBlahBlah">
<property name="location" value="classpath:somefile.xml"/>
</bean>
目前somefile.xml
位于src/main/java
,但我想将其放在文件系统中的某个位置。有没有办法做到这一点?我尝试设置完整路径而不是此classpath:
,但它不起作用。提前谢谢。
答案 0 :(得分:8)
按reference (Table 4.1),您应该使用文件系统资源路径:
<property name="location" value="file:/path/to/file.xml" />