原因: 创建jsp文件的步骤如下: 出现"javax.servlet.http.HttpServlet" was not found on the Java) 报错信息就是因为没有进行步骤2 (步骤2在创建servlet时无需选择) 解决方案: 点击项目名,鼠标右击,build path ——>configure build path 选择add libary——> server runtime…
原因是Javaweb工程类中没有添加Tomcat运行时相关类导致. 解决方式如下:出错的文件---->>build path---->>config build path---->>java build path---->>libraries---->>add library---->>server runtime---->>tomcat7.0  finish 就ok了! 今天这个页面再次出现,这次解决没有进行tomcat…
web工程中新建jsp文件提示:The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path…
Description Resource Path Location Type The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path index.jsp /ssm-crud/WebRoot line 1 JSP Problem 解决办法如下所示: 在add Library时,没有server runtime,就是用MyEclipse server library 然后ne…
题目有点长,昨天刚接触jsp,按照网上的教程安装完 tomcat 和 eclipse EE 之后,新建jsp文件却出现了如下报错: The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path 教程没有问题,传送门:http://www.runoob.com/jsp/jsp-setup.html 下面给出问题及解决方案: 1.报错内容: The superclass "…
今天使用Eclipse+Maven建立了一个Javaweb工程,并在eclipse中配置了Web容器Jboss eap 6.2.新建jsp页面,添加一个简单 的Java类.可是,JSP页面顶端出现“红色”的报错信息:The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path.原来Javaweb工程类中没有添加Web 容器Runtime相关类导致. 错误提示:…
在eclipse中新建文件报错错误提示如下: The superclass "javax.servlet.http.HttpServlet" was not found on the Java Buil 解决方案          右击项目文件名 然后点击确定,以及应用…
新建一个jsp文件后,有一个错误,The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path 解决方法: 1. 右键项目->build path->configure build path... 2. 选择 Java build path 3. Add Library->Server Runtime->Click Next 4. 选择 Server ru…
在静态项目上新建 jsp文件的时候,报错:The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path 可能的解决方案: 1)这时需要在eclipse中的 windows->references->Server->Runtime Environments中添加服务器即可. 2)添加Tomcat服务器中lib中的 servlet-api.jar文件即可.…
具体表现为: 使用Eclipse+Maven建立了一个Javaweb工程,JSP页面顶端出现“红色”的报错信息:The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path. 解决方法: 在pom.xml中的  <build></build>中  添加: <plugins> <!-- 编码和编译和JDK版本 --> <plug…