对于这个问题的话,请在pom文件中加入 <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency>…
1.异常信息 创建maven web项目时,出现 The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path错误. 2.异常截图: 2.错误分析: 缺少javaEE jar 包. javaEE jar 包在哪里? javaEE 是SUN公司定义的一大堆接口,是一系列的标准: 谁实现它谁就为这些接口提供jar文件包:而我们知道tomcat就实现了这些接口,如下图: 3.解决办法:…
在eclipse 中使用maven 创建java web项目,启动服务器遇到提示:The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path 一般解决方案:在pom.xml中添加依赖关系: <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet…
我们在用Eclipse进行Java web开发时,可能会出现这样的错误:The superclass javax.servlet.http.HttpServlet was not found on the Java Build Path.我们该怎么解决这个问题呢? 解决办法是重新构建路径就是Build Path 然后添加Server Runtime 就是服务器运行环境…
新建一个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…
原因是Javaweb工程类中没有添加Tomcat运行时相关类导致. 解决方式如下:出错的文件---->>build path---->>config build path---->>java build path---->>libraries---->>add library---->>server runtime---->>tomcat7.0  finish 就ok了! 今天这个页面再次出现,这次解决没有进行tomcat…
实际上就是tomcat没有配置的原因 先去http://tomcat.apache.org 下载tomcat 然后根据http://jingyan.baidu.com/article/8065f87fcc0f182330249841.html进行tomcat的安装 然后在eclipse配置tomcat http://jingyan.baidu.com/article/ca2d939dd90183eb6d31ce79.html 最后项目中配置TOMCAT,照着这个http://jingyan.ba…
另外一篇短文里还有第三种解决方案,查看请点击这里 1.异常信息 创建maven web项目时,出现 The superclass “javax.servlet.http.HttpServlet" was not found on the Java Build Path错误. 2.异常截图: 2.错误分析: 缺少javaEE jar 包. javaEE jar 包在哪里? javaEE 是SUN公司定义的一大堆接口,是一系列的标准: 谁实现它谁就为这些接口提供jar文件包:而我们知道tomcat就…
具体表现为: 使用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…