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

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>

然后就没有这个错误了

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