文章出自:http://www.xuebuyuan.com/1404908.html
错误: 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即可。。