There’s a Spring config file looking like this:
<beans>
<import resource="/asdasd.xml" />
<import resource="/asdasdr/asdadxml" />
<import resource="/asdasd/asdad.xml" />
</beans>
All those files are on the classpath and inside the project. They are referenced through the relative path to the Spring config file.
Now I want to add to this config file some other Spring config file, not in this project, but in a dependency and as well on the classpath.
How can I do this?
1 Answer