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

web.xml is missing and is set to true报错解决办法

程序员文章站 2022-05-19 12:02:52
...

web.xml is missing and is set to true,eclipse报错解决办法(两种解决方法)

  1. 右击项目→JavaEE Tools→Generate Deployment Discriptor Stub,然后系统会在src/main/webapp/WEB_INF文件夹下创建web.xml文件,ok!
    web.xml is missing and is set to true报错解决办法
  2. 第二种解决方法:在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>
相关标签: eclipse maven

上一篇: 中国美术馆

下一篇: 金湾区