说,我在 Spring 上下文中有以下 bean:
<bean class="some.class.BlabBlahBlah">
<property name="location" value="classpath:somefile.xml"/>
</bean>
当前somefile.xml
放置在 中src/main/java
,但我想将其放置在文件系统中的某个位置。有没有办法做到这一点?我试图设置完整路径而不是这个classpath:
,但它没有用。提前致谢。
通过参考(表 4.1),您可能应该使用文件系统资源路径:
<property name="location" value="file:/path/to/file.xml" />