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

时间:2023-03-08 22:30:31
新建Maven工程,pom.xml报错web.xml is missing and <failOnMissingWebXml> is set to true

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

解决办法:

  1. 在项目中添加web.xml
  2. 在pom.xml中添加下面的插件
  <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>