JSP页面中的request.getContextPath()出现“ .... .. refers to the missing type String


      将一个项目从另一台机器拷到新机器,安装了JDK1.8(这台机器上原先的JDK是1.6的),并配置好了JDK环境后,

 将整个项目部署后,在每个JSP页面中的"request.getContextPath()"下方出现了红色的波浪线,提示的错误信息是

“The method getContextPath() from the type HttpServletRequest refers to the missing type String”,

 原因是jre换了,找不到原项目的jre,现在只需重新绑定新机器的jre即可

此时,我们只需这样:

   1 右击该项目 - Build Path - Configure Build Path , 在 Libraries 选项下,会发现有个出错的jre Libraries,将其Remove掉。

   2 然后   右击该项目 - Build Path - Add Library, 选择JRE System Library,选择Workspace defaulr JRE(jdk1.6)(此前JDK已成功安装并配置好), 然后 Finish 。

 


posted @ 2017-12-29 00:00  Rapleal  阅读(276)  评论(0编辑  收藏  举报