当我为使用Eclipse WTP本地工作的应用程序发布war文件时,我对bean.xml文件中的bean定义有一个 FileNotFoundException 。
SEVERE: Exception sending context initialized event to listener instance of
class org.springframework.web.context.ContextLoaderListener
org.springframework.beans.factory.BeanDefinitionStoreException:
IOException parsing XML document from class path resource
[META-INF/spring/beans.xml]; nested exception is java.
io.FileNotFoundException: class path resource [META-INF/spring/beans.xml]
cannot be opened because it does not exist
at Caused by: java.io.FileNotFoundException: class path resource
[META-INF/spring/beans.xml] cannot be opened because it does not exist
...
我使用 mvn war:war 创建了war文件,并将其复制到Tomcat 7的webapps文件夹中。
beans.xml位于 src / main / resources / META-INF / spring / beans.xml 中,我在pom.xml中有以下内容:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<webResources>
<resource>
<directory>src/main/resources</directory>
</resource>
</webResources>
</configuration>
</plugin>
在war文件中,beans.xml打包在 META-INF / spring / beans.xml
中在我的web.xml中我已经:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:META-INF/spring/beans.xml</param-value>
</context-param>
但是找不到该文件。如何解决问题?
UPDATE :正如Matthew Farwell所说,bean.xml没有打包在正确的位置,所以它不在类路径中,我认为它是用maven-war-plugin参数指定的,现在我试着看看它的文档。如果有人知道它会有所帮助。
更新2 :正如maven-war-plugin documentation中所述,有一个名为targetPath的可选参数。我尝试过,在更改maven-war-plugin配置后添加targetPath,它会被正确打包。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<webResources>
<resource>
<directory>src/main/resources</directory>
<targetPath>WEB-INF/classes</targetPath>
</resource>
</webResources>
</configuration>
</plugin>
更新3 :关于Ryan Stewart的建议,我使用roo开始了我的初始pom设置,但之后我做了很多更改,我不再使用roo了。 pom.xml中的任何其他地方都没有提到目录src / main / resources(我使用过grep),但是对我来说唯一可疑的设置是:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
<configuration><encoding>UTF-8</encoding></configuration>
</plugin>
我已经注释掉了插件,但没有任何改变,然后我注释掉了maven-war-plugin的配置部分,但src / main / resources不再添加到战争中了,所以现在我添加了它回来了,我上传它在网上测试它(它实际上仍然是一个临时服务器,而不是最后一个)。
更新4 Ryan Stewart建议问题是我正在运行“mvn war:war”而不是“mvn package”,这确实是问题所在。使用我的targetPath,资源出现在WEB-INF / classes中,但那里没有任何类。
我正在进行艰苦的战斗,而更简单的解决方案是删除配置部分,如更新3中所示,并使用“mvn package”来构建war文件。谢谢Ryan和Matthew,我不仅解决了我的问题,而且还学到了更多关于Maven的知识。
答案 0 :(得分:2)
在战争中,/不是webapp的类路径的一部分。类路径包括/ WEB-INF / classes和/ lib中的所有jar。见Apache Tomcat 6.0 - Class Loader HOW-TO
WebappX - 为每个Web应用程序创建一个类加载器 部署在单个Tomcat实例中。所有未打包的课程和 Web应用程序的/ WEB-INF / classes目录中的资源, 加上/ WEB-INF / lib下的JAR文件中的类和资源 您的Web应用程序的目录对此Web可见 申请,但不适用于其他申请。
其他Web服务器将具有类似的规则。如果您希望引用某些内容作为类路径的一部分,请将其放在 WEB-INF / classes 中。
答案 1 :(得分:2)
我必须假设你有POM的另一部分,它将有问题的文件排除在作为类路径资源处理之外,否则它应该正常工作。任
classpath:
。如果没有该前缀,contextConfigLocation
中给出的路径将根据WAR文件的根目录进行解析,并且会在META-INF/spring
中正确找到您的文件。如果你选择路径1,那么你应该删除webResources
部分,否则你最终会将文件放在两个地方 - 没有问题,但可能会造成混淆。