详解 问题:HttpServlet cannot be resolved to a type

HttpServlet cannot be resolved to a type

DescriptionResourcePathLocationType
HttpServlet cannot be resolved to a typeSimpleServlet.java/JavaHelloWorldApp/src/main/java/wasdev/sample/servletline 15Java Problem
HttpServletRequest cannot be resolved to a typeSimpleServlet.java/JavaHelloWorldApp/src/main/java/wasdev/sample/servletline 22Java Problem
HttpServletResponse cannot be resolved to a typeSimpleServlet.java/JavaHelloWorldApp/src/main/java/wasdev/sample/servletline 22Java Problem
ServletException cannot be resolved to a typeSimpleServlet.java/JavaHelloWorldApp/src/main/java/wasdev/sample/servletline 22Java Problem
The import javax.servlet cannot be resolvedSimpleServlet.java/JavaHelloWorldApp/src/main/java/wasdev/sample/servletline 5Java Problem
The import javax.servlet cannot be resolvedSimpleServlet.java/JavaHelloWorldApp/src/main/java/wasdev/sample/servletline 6Java Problem
The import javax.servlet cannot be resolvedSimpleServlet.java/JavaHelloWorldApp/src/main/java/wasdev/sample/servletline 7Java Problem
The import javax.servlet cannot be resolvedSimpleServlet.java/JavaHelloWorldApp/src/main/java/wasdev/sample/servletline 8Java Problem
The import javax.servlet cannot be resolvedSimpleServlet.java/JavaHelloWorldApp/src/main/java/wasdev/sample/servletline 9Java Problem

WebServlet cannot be resolved to a typeSimpleServlet.java/JavaHelloWorldApp/src/main/java/wasdev/sample/servletline 14Java Problem

在文章 Java中REST API使用示例——基于云平台+云服务打造自己的在线翻译工具 中从IBM Bluemix上下载的Java示例代码,导入到Eclipse之后,出现以上错误信息!

错误原因:

Eclipse是刚刚安装的,还没有配置服务器运行环境!

解决办法:

1、首先要安装一下Tomcat;

通常是下载一个zip压缩包,解压一下就可以了;

2、Eclipse中点击Window菜单,选择Preferences

3、在左侧展开Server,选择Runtime Environment,右侧点击Add按钮

4、在弹出的窗口中选择你的Tomcat版本

5、点击“Browse”按钮选择Tomcat的安装位置,选择合适的JRE版本,点击Finish按钮完成。

通过上面的步骤,上面的错误都全部解决了,如果你的项目还显示 有错误,就需要考虑其它原因了。

可以参考:xxx cannot be resolved to a type 错误解决方法

(0)

相关推荐

  • 详解 问题:HttpServlet cannot be resolved to a type

    HttpServlet cannot be resolved to a type DescriptionResourcePathLocationType HttpServlet cannot be resolved to a typeSimpleServlet.java/JavaHelloWorldApp/src/main/java/wasdev/sample/servletline 15Java Problem HttpServletRequest cannot be resolved to

  • C# 中 Array和 ArrayList详解及区别

    C# 中 Array和 ArrayList详解及区别 一.Array 的用法 type[] typename=new type[size]; 或者 type[] typename=new type[]{ }; Array类型的变量在声明的同时必须进行实例化(如果初始化至少得初始化数组的大小) 平常我们int[],string[]...事实上就是声明一个array数组了 如: string [] srt=new string[]{"a","b"}; int[] a=n

  • java eclipse 出现 xxx cannot be resolved to a type 错误解决方法

    xxx cannot be resolved to a type 引言    eclipse新导入的项目经常可以看到"XX cannot be resolved to a type"的报错信息.本文将做以简单总结. 正文 (1)jdk不匹配(或不存在)  项目指定的jdk为"jdk1.6.0_18",而当前eclipse使用的是"jdk1.6.0_22".需要在BuildPath | Libraries,中做简单调整. (2)jar包缺失或冲突 

  • JSP 中request与response的用法详解

    JSP 中request与response的用法详解 概要: 在学习这两个对象之前,我们应该已经有了http协议的基本了解了,如果不清楚http协议的可以看我的关于http协议的介绍.因为其实request和response的使用大部分都是对http协议的操作. request对象的介绍 我们先从request对象进行介绍: 我们知道http协议定义了请求服务器的格式: 请求行 请求头 空格 请求体(get请求没有请求体) 好了,这里我们就不详细介绍了,我们只看几个应用就可以了,没什么难度: 应

  • JSP开发之生成图片验证码技术的详解

    JSP开发之生成图片验证码技术的详解 我们在网页注册用户时,常常会需要格根据图片给的图片验证码把验证码输进去.那么我们今天就来学习这个. 简单来说分为三步骤: 1.底层用Java实现生成验证码图片 2.通过配置文件调用实现Java生成片 3.通过HTML技术把图片显示到网页 首先是最底层Java生成图片代码 package cn.hncu.servlets; import java.awt.Color; import java.awt.Font; import java.awt.Graphics

  • spring boot application properties配置实例代码详解

    废话不多说了,直接给大家贴代码了,具体代码如下所示: # =================================================================== # COMMON SPRING BOOT PROPERTIES # # This sample file is provided as a guideline. Do NOT copy it in its # entirety to your own application. ^^^ # ========

  • jQuery.deferred对象使用详解

    一.前言 jQuery1.5之前,如果需要多次Ajax操作,我们一般会使用下面的两种方式: 1).串行调用Ajax $.ajax({ success: function() { $.ajax({ success: function() { $.ajax({ //callbacks... }); }); }); 这种方式代码可读性差,效率低,晦涩难懂,调试和排错的复杂度大. 2).并行调用Ajax var promises = []; $.ajax({ success: function() {

  • Apache 文件上传与文件下载案例详解

    写一个Apache文件上传与文件下载的案例:以供今后学习 web.xml配置如下: <span style="font-family:SimSun;font-size:14px;"><?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns=&

  • SpringMVC实现表单验证功能详解

    本章节内容很丰富,主要有基本的表单操作,数据的格式化,数据的校验,以及提示信息的国际化等实用技能. 首先看效果图 项目结构图 接下来用代码重点学习SpringMVC的表单操作,数据格式化,数据校验以及错误提示信息国际化.请读者将重点放在UserController.java,User.java,input.jsp三个文件中. maven 项目必不可少的pom.xml文件.里面有该功能需要的所有jar包. <?xml version="1.0" encoding="UTF

  • springmvc常用注解标签详解

     1.@Controller 在SpringMVC 中,控制器Controller 负责处理由DispatcherServlet 分发的请求,它把用户请求的数据经过业务处理层处理之后封装成一个Model ,然后再把该Model 返回给对应的View 进行展示.在SpringMVC 中提供了一个非常简便的定义Controller 的方法,你无需继承特定的类或实现特定的接口,只需使用@Controller 标记一个类是Controller ,然后使用@RequestMapping 和@Request

随机推荐