说,我在 Spring 上下文中有以下 bean:
<bean class="some.class.BlabBlahBlah">
<property name="location" value="classpath:somefile.xml"/>
</bean>
目前
somefile.xml
放在 src/main/java
中,但我想把它放在文件系统中的某个地方。有没有办法做到这一点?我试图设置完整路径而不是这个 classpath:
但它没有用。提前致谢。 最佳答案
通过 reference (Table 4.1) ,您可能应该使用文件系统资源路径:
<property name="location" value="file:/path/to/file.xml" />
关于java - Spring 中作为 bean 属性的完整路径,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11228217/