JSP报错:The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path
2014-04-21 00:08 ps_zw 阅读(81821) 评论(1) 编辑 收藏 举报今天使用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相关类导致。
错误提示:
解决方法很简单,在pom.xml中添加如下配置即可:
1 <dependency> 2 <groupId>javax.servlet</groupId> 3 <artifactId>servlet-api</artifactId> 4 <version>2.5</version> 5 <scope>provided</scope> 6 </dependency>
补充:如果还提示错误,还可以尝试下面的方式:
1、右击web工程-》属性或Build Path-》Java Build Path->Libraries-> Add Libray...->Server Runtime -》JBoss 7.1 Runtime
2、切换到Java Build Path界面中的Orader and Export,选择
作者:ps_zw
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利.