我将整个项目部署好以后,在每一个JSP页面中的"request.getContextPath()"下方出现了红色的波浪线,提示的错误信息是ui
“The method getContextPath() from the type HttpServletRequest refers to the missing type String”,spa
此时,咱们只需这样:部署
1 右击该项目 - Build Path - Configure Build Path , 在 Libraries 选项下,会发现有个出错的jre Libraries,将其Remove掉。get
2 而后 右击该项目 - Build Path - Add Library, 选择JRE System Library,选择Workspace defaulr JRE(jdk1.6)(此前JDK已成功安装并配置好), 而后 Finish 。jdk
这样,JSP页面中的错误提示就消失了。配置