eclipse 创建maven web错误Cannot change version of project facet Dynamic web module to 3.2解决方案

1、


web.xml 头改为:

<?xml version="1.0" encoding= "UTF-8"?> 

<web-app xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
xmlns= "http://java.sun.com/xml/ns/javaee"
xmlns:web= "http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id= "WebApp_ID"

version ="3.0">



在pom.xml中加入:

<build>
      <finalName>consumer</finalName>
       <plugins>  
          <plugin>  
              <groupId>org.apache.maven.plugins</groupId>  
             <artifactId>maven-compiler-plugin</artifactId>  
              <version>3.3</version>  
              <configuration>  
                  <!-- 指定source和target的版本 -->                 
                 <source>1.8</source>  
                 <target>1.8</target>  
                 <encoding>UTF-8</encoding>
             </configuration>  
         </plugin>  
     </plugins>  
   </build>

猜你喜欢

转载自blog.csdn.net/qq_41855053/article/details/80682736
今日推荐