jsp错误

1.The superclass “javax.servlet.http.HttpServlet” was not found on the Java Build Path
在Java构建路径上没有发现这个类
在pom.xml中加入

<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>

猜你喜欢

转载自blog.csdn.net/wenjian9487/article/details/82183569
jsp