maven 不能設定為web3.0人解決方法

一枚程式設計師發表於2018-03-19

maven 不能設定為web3.0人解決方法

錯誤: Description    Resource    Path    Location    Type Cannot change version of project facet Dynamic Web Module to 3.0.   

以下是在GG搜尋到的。http://stackoverflow.com/questions/75786/eclipse-how-can-i-change-a-project-facet-from-tomcat-6-to-tomcat-5-5

首先在硬碟下找到  \專案名\.setting\資料夾下的   org.eclipse.wst.common.project.facet.core.xml  xml檔案。

<?xml version="1.0" encoding="UTF-8"?>
<faceted-project>
  <fixed facet="wst.jsdt.web"/>
  <installed facet="jst.web" version="2.3"/>
  <installed facet="wst.jsdt.web" version="1.0"/>
  <installed facet="java" version="1.7"/>
</faceted-project>

將jst.web,的version改成3.0.

然後在eclipse裡右鍵該工程--maven--updateProject即可。。

相關文章