有一个Spring配置文件,如下所示:
<beans>
<import resource="/asdasd.xml" />
<import resource="/asdasdr/asdadxml" />
<import resource="/asdasd/asdad.xml" />
</beans>
所有这些文件都在类路径和项目内。它们通过Spring配置文件的相对路径引用。
现在我想在这个配置文件中添加一些其他Spring配置文件,不是在这个项目中,而是在依赖项中以及类路径中。
我该怎么做?
答案 0 :(得分:1)
<import resource="classpath:com/company/common/otherconfig.xml"/>
答案 1 :(得分:1)
<import resource="classpath:/path/to/spring-file.xml"/>