Maven 项目提示:web.xml is missing and <failOnMissin>is set to true
Posted 在奋斗的大道
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Maven 项目提示:web.xml is missing and <failOnMissin>is set to true相关的知识,希望对你有一定的参考价值。
问题描述:今天使用Eclipse 工具创建Maven 项目,并将打包方式<packaging> 指定为war
问题描述:今天使用Eclipse 创建Maven项目,并指定打包方式<packaging> 为war, 但pom.xml 问题件提示如下错误信息:web.xml is missing and <failOnMissin>is set to true。
造成问题原因:没有生成src/main/webapp/WEB_INF/web.xml
相关目录路径
解决办法:
方式一: 右键点击项目名--》Java EE Tools-->Generate Deployment Descriptor Stub
备注说明:我是使用该种方式解决上述问题。
方式二:在pom.xml中加入插件
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
</plugins>
</build>
以上是关于Maven 项目提示:web.xml is missing and <failOnMissin>is set to true的主要内容,如果未能解决你的问题,请参考以下文章
Spring boot 打包为war包报错:提示缺少web.xml
[转]在Eclipse整合Maven3.6.3插件导入maven项目并编译时,控制台提示No compiler is provided in this environment. Perhaps you