javax.servlet.jsp.PageContext cannot be resolved to a type

        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jsp-api</artifactId>
            <version>2.0</version>
            <scope>provided</scope>
        </dependency>

提供jsp-api的支持即可解决该问题。

注:provided

因为tomcat等容器中有该jar包,compile 级别会导致冲突报错。

时间: 2024-10-03 14:03:13

javax.servlet.jsp.PageContext cannot be resolved to a type的相关文章

maven中解决javax.servlet.jsp.PageContext cannot be resolved to a type

在eclipse环境下用maven出现:javax.servlet.jsp.PageContext cannot be resolved to a type. 这是因为没有引入jsp-api引发的问题,在pom.xml引入: <dependency> <span style="white-space:pre"> </span><groupId>javax.servlet</groupId> <artifactId>

Eclipse javax.servlet.jsp.PageContext cannot be resolved to a type 错误解决办法

目前在jsp页面form action中使用${pageContext.request.contextPath }/servlet的写法,但是一直提示有错误,错误如下:javax.servlet.jsp.PageContext cannot be resolved to a type 网上解答过说要缺少jsp-api.jar,导入这个包之后不报错了,但是程序启动访问这个页面的时候出现如下错误: org.apache.jasper.JasperException: Unable to read T

解决javax.servlet.jsp.JspException cannot be resolved to a type

java开发工具 在导入新项目后出现 javax.servlet.jsp.JspException cannot be resolved to a type错误信息: 解决方案: 看看项目中是否存在jsp.api.jar包.若是不存在就去tomcat中copy一份  jsp.api.jar包到项目lib中 The import javax.servlet.http.HttpServletRequest cannot be resolved 错误信息 解决方案: 看看项目中是否存在servlet.

javax.servlet.jsp.JspException cannot be resolved to a type

在你的项目中加入jsp-api.jar和servlet-api.jar包,这两个包来源于tomcat的libs目录中,但是会出现一个问题,项目打包发布的时候也会将这两个jar打包出去,这时候发布到tomcat中后tomcat可能启动失败,同时你的jar包可能和tomcat中的jar版本不一致等情况. 解决方式:右键你的项目--properties选择Targeted Runtimes,选择你的运行环境,我选择Apache Tomcat v7.0,Apply--OK. 原文地址:https://w

jsp使用c:forEach报错 javax.servlet.jsp.PageContext.getELContext()Ljavax/el/ELContext的问题

今天发现了一个折磨我一天的问题: 在jsp文件中使用 <c:forEach items="${checkResult}" var="item"> </c:forEach> 一直报错: [ERROR] 2013-12-09 15:03:20,740 method:org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:253) Servlet.

- The import javax.servlet.jsp.JspWriter cannot be resolved

 Add servlet-api.jar and jsp-api.jar from Tomcat 6.0 library to ecipse project.- The import javax.servlet.jsp.JspWriter cannot be resolved

The import javax.servlet.jsp.JspException cannot be resolved

问题描述 ??重新更换了 Apache Tomcat 的版本,在 Eclipse 中项目报错信息:The import javax.servlet.jsp.JspException cannot be resolved 解决方法 ??重新配置一下工程路径,配置服务器. Eclipse -> Project -> Clean... 一下工程; 右键 工程项目 -> Build Path -> Configure Build Path... -> Java Build Path

javax.servlet.jsp.JspException cannot be resolved

加入以下,解决 <properties> <jdk.version>1.6</jdk.version> <spring.version>3.2.8.RELEASE</spring.version> <spring.security.version>3.2.3.RELEASE</spring.security.version> <!-- Web --> <jsp.version>2.1</jsp

javax.servlet.jsp cannot be resolved to a type

把MyEclipse里的项目导入到Eclipse Luna版中后出现了个莫名其妙的错误,注:Eclipse Luna是新装的. 错误描述:jsp页面中引用的js报错,鼠标放上去以后提示:javax.servlet.jsp cannot be resolved to a type.图片为证: 类似以上底下有红色波浪线的错误,好多jsp页面都有,还各不相同. 解决办法: 点击菜单栏:Window→Preferences→Validation,在右侧找"JSP Syntax Validator&quo