maven中解决Type javax.servlet.jsp cannot be resolved to a type
Posted 方向 方法 积累 专注 突破
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven中解决Type javax.servlet.jsp cannot be resolved to a type相关的知识,希望对你有一定的参考价值。
解决方案:
在Maven的pom文件中引发如下依赖jar:
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.2.1-b03</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>3.0-alpha-1</version>
</dependency>
以上是关于maven中解决Type javax.servlet.jsp cannot be resolved to a type的主要内容,如果未能解决你的问题,请参考以下文章
ServletContextListener和ServletContext
maven中解决Type javax.servlet.jsp cannot be resolved to a type
maven中解决javax.servlet.jsp.PageContext cannot be resolved to a type
Maven项目中提示:Eclipse “cannot be resolved to a type” error
maven项目依赖到外部jar时报 java.lang.classnotfoundexception:Type com.xx.xx.xxx not present 的解决