欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

新建Maven工程,pom.xml报错web.xml is missing and is set to true

程序员文章站 2022-12-24 13:19:32
错误原因: 项目中没有web.xml 解决办法: ......

错误原因: 项目中没有web.xml

解决办法:

  1.  在项目中添加web.xml
  2. 在pom.xml中添加下面的插件
 1  <build>
 2   <plugins>
 3    <plugin>
 4     <groupid>org.apache.maven.plugins</groupid>
 5     <artifactid>maven-war-plugin</artifactid>
 6     <version>2.6</version>
 7     <configuration>
 8      <failonmissingwebxml>false</failonmissingwebxml>
 9     </configuration>
10    </plugin>
11   </plugins>
12  </build>