新建Maven工程,pom.xml报错web.xml is missing and is set to true
程序员文章站
2022-12-24 13:19:32
错误原因: 项目中没有web.xml 解决办法: ......
错误原因: 项目中没有web.xml
解决办法:
- 在项目中添加web.xml
- 在pom.xml中添加下面的插件
1 <build> 2 <plugins> 3 <plugin> 4 <groupid>org.apache.maven.plugins</groupid> 5 <artifactid>maven-war-plugin</artifactid> 6 <version>2.6</version> 7 <configuration> 8 <failonmissingwebxml>false</failonmissingwebxml> 9 </configuration> 10 </plugin> 11 </plugins> 12 </build>