最新消息:关注【太平洋学习网】微信公众号,可以获取全套资料,【全套Java基础27天】【JavaEE就业视频4个月】【Android就业视频4个月】

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

Javaweb 太平洋学习网 浏览 评论

 在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错误就是这么简单。

来源网站:太平洋学习网,转载请注明出处:http://www.tpyyes.com/a/javaweb/276.html
"文章很值,打赏犒劳作者一下"
微信号: Javaweb_engineer

打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

与本文相关的文章

发表我的评论
取消评论

表情

您的回复是我们的动力!

  • 昵称 (必填)

网友最新评论