Maven 项目创建 找不到web.xml

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Maven 项目创建 找不到web.xml相关的知识,希望对你有一定的参考价值。

今天搭建maven 项目 使用maven命令时 报错,错误信息如下:

Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.2:war (default-war) 

 

解决方案;

  在主项目的pom 下的 build 下添加   //本身项目没有web.xml的情况下使用

<plugins>  
    <plugin>  
        <groupId>org.apache.maven.plugins</groupId>  
        <artifactId>maven-war-plugin</artifactId>  
        <version>3.0.0</version>  
        <configuration>  
            <failOnMissingWebXml>false</failOnMissingWebXml>  
        </configuration>  
    </plugin>  
</plugins>  

  有web.xml 的情况添加

<plugins>  
    <plugin>  
        <groupId>org.apache.maven.plugins</groupId>  
        <artifactId>maven-war-plugin</artifactId>  
        <version>3.0.0</version>  
        <configuration>  
            <webResources>  
                <resource>  
                    <directory>WebContent</directory>  
                </resource>  
            </webResources>  
        </configuration>  
    </plugin>  
</plugins>  

 2017年7月21日12:02:07 记录

以上是关于Maven 项目创建 找不到web.xml的主要内容,如果未能解决你的问题,请参考以下文章

maven创建web工程Spring配置文件找不到问题解决方案

maven 搭建spring框架报找不到applicationContext-*.xml文件

maven的java web项目启动找不到Spring ContextLoaderListener的解决办法

maven web项目的web.xml报错The markup in the document following the root element must be well-formed.(代码片段

JAVA maven创建web项目,把Spring框架配置文件放在src/main/resources中读取不到配置文件

idea初学建立maven项目报错