The superclass “javax.servlet.http.HttpServlet“ was not found on the Java Build Path问题处理

在利用MyEclipse2019创建web project项目时,遇到index.jsp报错,如下图所示

The superclass “javax.servlet.http.HttpServlet“ was not found on the Java Build Path问题处理_第1张图片

The superclass “javax.servlet.http.HttpServlet“ was not found on the Java Build Path问题处理_第2张图片

主要原因时pom.xml中缺少jar包;

解决办法

在pom.xml中添加jar包,maven语句如下:


        javax.servlet
        javax.servlet-api
        4.0.1
        provided
    

添加后,右键点击项目名称,弹出菜单中选择“maven”→“Update project”,更新jar包,错误标记就消失了。

你可能感兴趣的:(servlet,http,java)