0

我有 Spring 的 Maven 项目。我在类路径中有后端项目作为 jar(添加为 maven 依赖项)。后端项目再次使用 Spring 并拥有自己的 applicationContext.xml。在前端项目中,我有 applicationContext.xml,我想从后端访问应用程序上下文,如下所示:

<import resource="classpath:applicationContext.xml" />

但我得到了:

org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Failed to import bean definitions from URL location [classpath:applicationContext.xml]
Offending resource: ServletContext resource [/WEB-INF/appContext.xml]; nested exception is org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from class path resource [applicationContext.xml]; nested exception is java.io.FileNotFoundException: class path resource [applicationContext.xml] cannot be opened because it does not exist

也试过:

<import resource="classpath*:applicationContext.xml" />

<import resource="classpath:/applicationContext.xml" />
4

1 回答 1

1

如果我理解正确,您希望前端访问后端项目的 applicationContext.xml。那么 classpath* 是正确的说法,你应该确保两个配置文件的命名空间是相同的。

例如,这种情况下不起作用

前端:

http://www.springframework.org/schema/beans/spring-beans-3.1.xsd

后端:

http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
于 2013-01-28T11:06:16.780 回答