No Data

Error assembling WAR: webxml attribute is required (or pre-existing WEB-INF/web.xml if executing in update mode)

原创  作者:斩雪碎光阴  发布于:2023年12月26日  阅读量:401
版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
  分类:  标签:

1.版本

idea Server URL: https://start.aliyun.com/

springboot:2.6.13

2.报错

打war包时报错:

Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.2:war (default-war) on project MQTTService: Error assembling WAR: webxml attribute is required (or pre-existing WEB-INF/web.xml if executing in update mode)

3.解决

pom.xml中加

<properties>
...
    <failOnMissingWebXml>false</failOnMissingWebXml>
</properties>


相关文章