用eclipse做项目时,在Dynamic web module version栏里选择了最新的3.0版本。到了部署项目时就出现了Tomcat version 6.0 only supports J2EE 1.2, 1.3, 1.4, and Java EE 5 Web modules这个错误。
两种解决办法:
1.
在项目的.setting文件夹下有个org.eclipse.wst.common.project.facet.core.xml文件,里面配置各种版本信息
<?xml version="1.0" encoding="UTF-8"?>
<faceted-project>
<fixed facet="java"/>
<fixed facet="jst.web"/>
<fixed facet="wst.jsdt.web"/>
<installed facet="java" version="1.7"/>
<installed facet="jst.web" version="3.0"/>
<installed facet="wst.jsdt.web" version="1.0"/>
</faceted-project>
将<installed facet="jst.web" version="3.0"/>修改成<installed facet="jst.web" version="2.5"/>即可。
2.
下载Tomcat 7.0
原文:http://blog.csdn.net/xiangxueping2008/article/details/11969009