web.xml is missing and is set to true
程序员文章站
2022-05-19 10:51:54
...
在编译springmvc项目时,发现pom.xml文件出现了一个错误
显示为:web.xml is missing and <failOnMissingWebXml> is set to true
经过资料的查找找到了解决的办法:
就是在pom.xml文件中手动添加如下配置:
<properties>
<failOnMissingWebXml>false</failOnMissingWebXml>
</properties>
然后就没有这个错误了