1. 使用Maven打包项目的时候遇到如下问题:缺少web.xml文件
webxml attribute is required (or pre-existing
WEB-INF/web.xml if executing in update mode)
2.解决方案:
- 在pom.xml文件中定义一个参数配置
<properties>
<failOnMissingWebXml>false</failOnMissingWebXml>
</properties>
- 更新maven-war-plugin的版本
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>3.0.0</version>
</plugin>
- 在webapp目录下创建WEB-INF/web.xml