1. 程式人生 > >The method getContextPath() from the type HttpServletRequest refers to the missing type

The method getContextPath() from the type HttpServletRequest refers to the missing type

問題描述:

每個JSP頁面中的"request.getContextPath()"下方出現了紅色的波浪線,提示的錯誤資訊是“The method getContextPath() from the type HttpServletRequest refers to the missing type String”

解決辦法:

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 。
    這樣,JSP頁面中的錯誤提示就消失了。