在建好Maven项目之后 index.jsp出现如下错误。
The superclass “javax.servlet.http.HttpServlet”was not found on the Java Build Path
在pom.xml中添加
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>7.0</version>
<scope>provided</scope>
</dependency>
保存之后,错误消失。