1. 程式人生 > >DescriptionResourcePathLocationType web.xml is missing

DescriptionResourcePathLocationType web.xml is missing

詳細錯誤是:

Description	ResourcePath Location Type web.xml is missing and 
<failOnMissingWebXml> is set to true pom.xml /Ascend line 7	Maven Java EE Configuration Problem

場景:

eclipse中單純建立一個maven project 打包方式是war包。直接建立完成後執行update project之後發現pom檔案報錯。位置大概在package標籤平齊的位置。

解決方式:

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>

然後執行update project ,完成,解決問題。