eclipse如何修改dynamic web module version
由于从SVN down下来的工程java及tomcat 版本比本地高,导致工程不能编译,报以下错误。
1.Java compiler level does not match the version of the installed Java project facet.
2.Target runtime Apache Tomcat v8.0 is not defined.
本机默认jdk为1.6版本,tomcat为7.0版本。
检查Project Facets,
试图更新为低版本时报如下错误
此时,改.settings中的org.eclipse.wst.common.project.facet.core.xml文件即可
<installed facet="java" version="1.6"/>
<installed facet="jst.web" version="3.0"/>
<installed facet="wst.jsdt.web" version="1.0"/>
即可