写点什么

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

用户头像
wood
关注
发布于: 2020 年 12 月 18 日

原因:在java web工程下没有引入中间件(服务器tomcat)运行的library,一般只有动态网页工程才有这个报错



解决办法

(1): 确认eclipse中server的运行环境是否有配置,设置方法为:Window → Preferences → Server → Runtime Environments →Add → 选择Apache的版本后点Next,再填入你apache tomcat软件的安装(解压后)目录。

(2): 右击web工程 → Build Path → Configure build path... → Java Build Path → Libraries → Add Libray... → Server Runtime →Next> → Apache Tomcat Server →Finish。

(3): 切换到Java Build Path界面中的Orader and Export,勾选Tomcat。

(4): 右击web工程 → 属性 → Project Facets → 点击右侧tab选择Runtimes → 勾选tomcat → OK。



解决办法原文地址:https://stackoverflow.com/questions/22756153/the-superclass-javax-servlet-http-httpservlet-was-not-found-on-the-java-build



用户头像

wood

关注

还未添加个人签名 2020.04.03 加入

还未添加个人简介

评论

发布
暂无评论
The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path