gpt4 book ai didi

java - bean 定义文件的 FileNotFoundException 仅发生在网上,而不发生在本地主机上

转载 作者:行者123 更新时间:2023-12-01 19:13:32 34 4
gpt4 key购买 nike

当我为在本地使用 Eclipse WTP 的应用程序发布一个 war 文件时,我的 bean 定义的 bean.xml 文件出现了 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>

但是找不到该文件。如何解决问题?

更新:正如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不再添加到war中,所以现在我添加了它回来了,我正在上传它以在线测试它(实际上它仍然是一个临时服务器,无论如何都不是最终的服务器)。

更新 4 Ryan Stewart 表示问题是我运行的是“mvn war:war”而不是“mvn package”,这确实是问题所在。使用我的 targetPath,资源出现在 WEB-INF/classes 中,但那里没有任何类。

我正在进行一场艰苦的战斗,而更简单的解决方案是删除更新 3 中的配置部分,并使用“mvn package”来构建 war 文件。感谢 Ryan 和 Matthew,我不仅解决了我的问题,而且还学到了更多关于 Maven 的知识。

最佳答案

我必须假设 POM 的另一部分排除了有问题的文件作为类路径资源进行处理,否则它应该可以工作。要么

  1. 停止这样做,它会正常工作 - src/main/resources 的内容默认成为类路径资源 - 或者
  2. 删除 classpath:从你的路径。如果没有该前缀,contextConfigLocation 中给出的路径将针对 WAR 文件的根进行解析,并且它将在 META-INF/spring 中正确找到您的文件。 .

如果您选择路径 1,那么您应该删除 webResources部分,否则您最终会在两个地方得到该文件——这不是问题,但可能会造成困惑。

关于java - bean 定义文件的 FileNotFoundException 仅发生在网上,而不发生在本地主机上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7628370/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com