码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2017-04-10 22:26:07      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:generate   als   pid   右击   方案   artifact   解决   span   nbsp   

 在学习maven模块化构建项目的时候遇到了如下报错信息:

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

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

当然这个方法是针对web项目的解决方案,

如果你的工程不是web项目,那么还有另外一种解决方案,就是在pom文件中配置一下failOnMissingWebXml。具体配置如下:

<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>

 

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

标签:generate   als   pid   右击   方案   artifact   解决   span   nbsp   

原文地址:http://www.cnblogs.com/xiongduang/p/6691196.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!