1.在出现此错误的项目上右键-->Build Path --> Configure Build Path 2.点击右边的 ADD Library 3.选中“Server Runtime”,然后 Next 4.选择"Apache Tomcat v8.5",然后Finish 5.然后点击上面的“Order and Export”,选中“Apache Tomcat v8.5 [Apache Tomcat v8.5]”,点击“Apply”,最后点击“OK” 问题就解决了.…
maven新建web项目提示The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path   在pom.xml中添加下面代码来下载servlet-api: <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId>…
web工程中新建jsp文件提示:The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path…
新建jsp页面老提示: Multiple annotations found at this line: - The superclass "javax.servlet.http.HttpServlet" was not found on the Java   Build Path 解决步骤:1.右键项目-build path 2.选择configure build path... 3.选择 java build path 4.Add Library –> server Runt…
具体表现为: 使用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…
在maven web项目中的index.jsp中的错误信息如下: The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path 从错误信息可以看出来,找不到该类,也就是说找不到相应jar包. 所以解决方法就是引用相应jar包即可. 前提: 需要设置Server Runtime, Window -> Perferences -> Server -> Runtime…
ava.lang.ClassNotFoundException: com.mysql.jdbc.Driverat org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1647)at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1493)at java.lang.Class.forNa…
新建的 web 工程 有红色的感叹号问题:     在eclipse 中新建一个web工程,但是工程上有红色的感叹号.解决:     1.右键工程,选择Build Path-->Configure Build Path;    2. 选择Libraries 下的 Web App Libraries,再点击右边的remove;    3. 点击右边的Add Library再添加 Web App Libraries;    4. 完成以上操作即可解决.…
问题描述: 我们在用Eclipse进行Java web开发时,可能会出现这样的错误:The superclass javax.servlet.http.HttpServlet was not found on the Java Build Path.我们该怎么解决这个问题呢? 问题原因: 原来Javaweb工程类中没有添加 Tomcat运行时相关类 导致.尤其是导入项目的时候最容易出现. 解决办法: 下面是具体的解决方法: 1.右击 web工程 --> 属性或Build Path --> Co…
在静态项目上新建 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文件即可.…