运行tomcat:报错信息The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path

这种情况经常在eclipse导入别的工程项目时会出现,一般可以采用以下两种方法解决:

一、

1. 先设置Apache服务器。设置方法为:window -> Preferences -> Server -> Runtime Environment -> add -> 选择Apache的版本后点Next,再填入你的Apache服务器安装地址。

2. 右击web工程 -> Build Path -> Java Build Path -> Libraries -> Add Library -> Server Runtime -> Tomcat Server

3. 转到Java Build Path 界面中的Orader and Export,选择Tomcat。

若第一种方法无法解决,则可以尝试第二种方法:

二、

在build path里导入tomcat/lib下的server-api.jar包,这样就可以解决了


你可能感兴趣的:(运行tomcat:报错信息The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path)