首页 > Web开发 > 详细

pom.xml报错web.xml is missing and <failOnMissingWebXml> is set to true

时间:2019-06-18 23:48:00      阅读:235      评论:0      收藏:0      [点我收藏+]

一、web.xml is missing and <failOnMissingWebXml> is set to true

  原因是在项目中缺少web.xml,且<failOnMissingWebXml>被设置成了true

  解决方法:a.如果项目需要web.xml,去复制一个web.xml到项目中即可。

          也可以使用Eclipse生成:有如下两种方式

                    1.右击项目——>Java EE Tools——>Generate Deployment Descriptor Stub.然后系统会在src/main/webapp/WEB_INF文件加下创建web.xml文件。错误解决!

          2.右击项目——>Properties——>Project Facets  将Dynamic Web Module的勾去掉,点击Apply,再重新勾上,点击下方出现的Further configuration availber,再选择生成的目录即可生成web.xml

        技术分享图片

         技术分享图片

 

      b.如果项目不需要web.xml,则需要在pom.xml中将<failOnMissingWebXml>配置成false,有如下两种配置方式

      1.

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

      2.

<properties>
    <failOnMissingWebXml>false</failOnMissingWebXml>
</properties>

 

pom.xml报错web.xml is missing and <failOnMissingWebXml> is set to true

原文:https://www.cnblogs.com/suziyu/p/11048360.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!