当前位置: 代码迷 >> Web前端 >> 添加项目时提醒"Tomcat version 5.5 only supports J2EE 1.2, 1.3, and 1.4 Web modules"
  详细解决方案

添加项目时提醒"Tomcat version 5.5 only supports J2EE 1.2, 1.3, and 1.4 Web modules"

热度:555   发布时间:2012-06-28 15:20:03.0
添加项目时提示"Tomcat version 5.5 only supports J2EE 1.2, 1.3, and 1.4 Web modules"

在用eclipse添加项目进行发布时,

?

出现如下出错提示:

?

"Tomcat version 5.5 only supports J2EE 1.2, 1.3, and 1.4 Web modules”

?

解决办法:

?

在项目目录下面,.settings/中,

?

找到 org.eclipse.wst.common.project.facet.core.xml 文件进行编辑,

?

?

对其中的节点:

?

<installed facet="jst.web" version="2.5"/>

?

修改成如下即可:

?

<installed facet="jst.web" version="2.4"/>

?

?

?

2. 另:解决eclipse中Errors running builder JavaScript Validator的问题:

?

Errors occurred during the build.
Errors running builder 'JavaScript Validator' on project XXXX.
java.lang.NullPointerException.

?

要解决这个问题,要就把JavaScript Validator去掉。去掉的方法是:

项目右键Properties―-Builders,将"JavaScript Validator"的【√】去掉即可。

?

  相关解决方案