码迷,mamicode.com
首页 > 编程语言 > 详细

Eclipse------导入项目后出现javax.servlet.jsp cannot be resolved to a type

时间:2018-07-12 00:29:58      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:bsp   details   --   错误   分享图片   servlet   lips   Servle   pom   

报错信息: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

标签:bsp   details   --   错误   分享图片   servlet   lips   Servle   pom   

原文地址:https://www.cnblogs.com/tianhengblogs/p/9297367.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!