web.xml is missing and is set to true
程序员文章站
2022-05-19 10:45:41
...
在eclipse中使用maven创建java web项目时经常出现这个错误:
根据描述有2个原因;
1,是web.xml is missing,解决方法创建web.xml.
2, is set to true,改为false即可。
在pom.xml中加入
<properties>
<failOnMissingWebXml>false</failOnMissingWebXml>
</properties>
或者
<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>