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

Posted Brenda

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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>jsp-api</artifactId>
	<version>2.0</version>
</dependency>


问题解决。

以上是关于maven中解决javax.servlet.jsp.PageContext cannot be resolved to a type的主要内容,如果未能解决你的问题,请参考以下文章

包 javax.servlet.jsp.tagext 不存在

javax.servlet.jsp-api 的目的是啥

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

javax.servlet.jsp.JspException cannot be resolved to a type 和 javax.servlet.jsp.PageContext cannot b

javax.servlet.jsp.tagext.TagLibraryValidator错误解决办法

maven pom.xml 添加 servlet和jsp依赖