Eclipse------导入项目后出现javax.servlet.jsp cannot be resolved to a type
Posted 玉天恒
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Eclipse------导入项目后出现javax.servlet.jsp cannot be resolved to a type相关的知识,希望对你有一定的参考价值。
报错信息:javax.servlet.jsp cannot be resolved to a type
原因1:
这个错误可能是服务器自带的servlet库未导入的原因。
解决方法:
右键项目"Properties",转到Targeted Runtimes,选择一个服务器,例如Tomcat,单击应用,可能就可以解决。
原因2:
servlet包只是编译时需要,而发布时不需要,避免与tomcat中的servlet包发生冲突
解决方法:
在pom.xml中添加对servlet-api的依赖即可。
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jsp-api</artifactId>
<version>2.0</version>
<scope>provide</scope>
</dependency>
转载: https://blog.csdn.net/u014313894/article/details/51895563 https://blog.csdn.net/jinyuancai/article/details/54708341
以上是关于Eclipse------导入项目后出现javax.servlet.jsp cannot be resolved to a type的主要内容,如果未能解决你的问题,请参考以下文章
eclipse项目导入idea报错:程序包javax.servlet不存在