我有两个项目,每个项目在各自的资源文件夹中都有 Spring XML 文件。
但是一个项目被其他项目引用,比如导入jar。
如何在 jar 中使用 XML?
您可以使用classpath*:/application-context.xml
- 替换application-context.xml
为您的文件名。
如果您的 Spring XML 文件名为 applicaiton-context.xml,请将其移动到两个项目中的 spring 文件夹下。然后,您可以像这样使用两个 XML 文件创建上下文
ApplicationContext ctx = new ClasspathXmlApplicationContext("classpath*:/spring/application-context.xml")