每日小结。
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>
这样就能加载到类了。