在maven项目中的jsp中遇到The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path错误是因为你的项目中没有servlet-api-3.1.jar的相关依赖,只需要在pom.xml中加入jar包即可解决,代码如下。
<dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> <scope>provided</scope> </dependency>
解决The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path错误就是这么简单。