eclipse中 报出The type javax.servlet.http.HttpServlet cannot be resolved. It is indirect错误

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了eclipse中 报出The type javax.servlet.http.HttpServlet cannot be resolved. It is indirect错误相关的知识,希望对你有一定的参考价值。

今天附加一个工程之后报出这个错误···请问应该如何处理?

解决办法:

    右键工程找到build path项。

    找到Add Libraries。

    点击myEclipse Libraries,Next。

    JavaEE 5。

常见的报错处理:

    change project compliance and jre to 1.5。

    解决方法: eclipse中:右键你的项目–Build Path–Add Libraries–JRE System Library–Execution environment–选择JavaSE 1.6或者1.7。

    xxx cannot be resolved to a type。

    解决方法:1)jdk不匹配(或不存在) 项目指定的jdk为“jdk1.6.0_18”,而当前eclipse使用的是“jdk1.6.0_22”。需要在BuildPath | Libraries,中做简单调整。 2)jar包缺失或冲突 当找不到“XX”所在的jar包时,会报这个错。解决只需要找到(ctrl+点击,可能能看到jar包名称)对应jar包导入项目即可。 另外,出现相同的XX时也会报此错。可能需要调包、解包、选删。 3)eclipse查找项目类型策略所致 eclipse下,上述两条都对比过了,没有任何问题,可偏偏还报这错。这时,需要操作一下 Project | Clean… ,问题即可解决。原因是,机制所致。因为某些特殊原因,eclipse没能自动编译源代码到build/classes(或其他classes目录),导致类型查找不到。

    eclipse下设置tomcat内存大小。

    设置步骤如下: 1)点击eclipse上的debug图标旁边的下拉箭头。2)然后选择Run Configurations。3)系统弹出设置tomcat配置页面,在Argument中末尾添加参数中的VM arguments中追加。

参考技术A 项目缺少servlet-api.jar文件,导入即可解决。它在tomcat的lib目录下可以找到。 参考技术B The type javax.servlet.http.HttpServletRequest cannot be
resolved.
如果在MyEclipse中遇到这种情况,也就是HttpServletRequest报红叉的时候,这样做
1、右键工程找到build path项
2、找到Add Libraries
3、点击myEclipse Libraries,Next
4、添加JavaEE 5
OK

参考资料:http://blog.csdn.net/jasper_success/article/details/7606605

参考技术C 需要把servlet.jar添加到class build path 参考技术D 我运行了 没错啊 加载了吧 tomcat配置是不是不对?

the import javax.servlet

问题:


在eclipse中编写servlet时出现“the import javax.servlet unresolved”

问题原因:


缺少servlet-api.jar架包。

问题解决办法:


在eclipse中,右击项目,选择java Build Path—> Libraries —> Add External JARs,
找到你计算机中tomcat的安装路径,在common\lib文件夹下选中“servlet-api.jar”
添加点击确定。

以上是关于eclipse中 报出The type javax.servlet.http.HttpServlet cannot be resolved. It is indirect错误的主要内容,如果未能解决你的问题,请参考以下文章

Eclipse打开项目后发生错误: The import javax.servlet cannot be resolved

eclipse中,项目有红叉之- The superclass "javax.servlet.http.HttpServlet" was not found on the Java

eclipse更改workspace中出现The superclass "javax.servlet.http.HttpServlet" was not found on the

the import javax.servlet

eclipse - The superclass "javax.servlet.http.HttpServlet" was not found on the Java

在Eclipse中编写servlet时出现"The import javax.servlet cannot be resolved" 问题解决办法