HttpSession类找不到

之前学习的时候使用MyEclipse做项目 好多东西都是现成的,好多需要注意的地方都没有注意到;现在工作中使用Eclipse,出现很多未曾遇到过的Exception,感觉有必要记录一下,以便为遇到同样错误的fresh们提供一个参考,也放便今后自己的不时之需。


将一个在myEclise中做的项目导入到Eclipse中(注意:虽然可以导入,MyEclipseh中的项目目录和Eclipse中项目目录不同,不知道会不会有影响。我是在Eclipse重新建的项目然后导入的源文件和jar包),在一个类中出现如下错误,

代码: HttpSession session = ServletActionContext.getRequest().getSession();

错误:

Multiple markers at this line
- HttpSession cannot be resolved to a type
- The type javax.servlet.http.HttpServletRequest cannot be resolved. It is indirectly 
referenced from required .class files


原因:缺少javaee.jar包导入jar包后问题解决

你可能感兴趣的:(eclipse)