JSP页面The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path错误处理

每日小结。

JSP页面出现错误。

1 The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path

在pom里面添加如下配置。

1 <dependency>
2         <groupId>javax.servlet</groupId>
3         <artifactId>servlet-api</artifactId>
4         <version>2.5</version>
5         <scope>provided</scope>
6 </dependency>

这样就能加载到类了。

原文地址:https://www.cnblogs.com/xiangxi/p/6268974.html