jsp页面:request.getContextPath()报错

xiaoxiao2021-02-28  92

报错内容:

Multiple annotations found at this line: - String cannot be resolved to a type - The method getContextPath() from the type HttpServletRequest refers to the missing type String

解决办法:

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

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

转自:http://blog.csdn.net/zonglei_5218/article/details/7819562

注意:

1、在倒入一个新的java project的时候,项目前面难免会有很多红叉叉,提示很多错误,比如:

错误:String cannot be resolved to a type:……

类似这些情况有时候是tomcat配置不对,有时候是jre配置不对。不妨先在Build Path把jre配置正确,会减少很多红叉叉。

2、记得在Project里重新编译,Clean…

转载请注明原文地址: https://www.6miu.com/read-64078.html

最新回复(0)