Dynamic Web Module 3.0 工程時代不需要web.xml檔案註冊相關內容的,所以工程預設不生成web.xml
failOnMissingWebXml 設為false,顧名思義是對丟失web.xml這個檢測機制進行忽略
在pom.xml加上
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
</plugins>
</build>
在 專案名\src\main\webapp目錄下建立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" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>MavenWeb02</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
注意:方法一和方法二隻用其中一種解決即可
這種情況我還沒遇到過,如果以上兩種方法不能解決問題
那麼就有可能是maven 編譯級別過低
(這種解決辦法是我在尋找解決方法的時候看到的,目前我還沒用過)
使用 maven-compiler-plugin 將 maven 編譯級別改為 jdk1.6 以上:
<build>
<plugins>
<!-- java編譯外掛 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
按照以上修改之後右鍵專案→Maven→Update Maven Project