我將整個項目部署好以後,在每一個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頁面中的錯誤提示就消失了。配置