`
cakin24
  • 浏览: 1388361 次
  • 性别: Icon_minigender_1
  • 来自: 西安
社区版块
存档分类
最新评论

使用MyEclipse编写Servlet

    博客分类:
  • java
阅读更多
一 步骤
1、src->new->Servlet
2、重写doGet()或者doPost()方法
3、部署运行
 
二 代码
1、HelloServlet
package servlet;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class HelloServlet extends HttpServlet {
    /**
     * Constructor of the object.
     */
    public HelloServlet() {
        super();
    }
    /**
     * Destruction of the servlet. <br>
     */
    public void destroy() {
        super.destroy(); // Just puts "destroy" string in log
        // Put your code here
    }
    /**
     * The doGet method of the servlet. <br>
     *
     * This method is called when a form has its tag value method equals to get.
     *
     * @param request the request send by the client to the server
     * @param response the response send by the server to the client
     * @throws ServletException if an error occurred
     * @throws IOException if an error occurred
     */
    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        System.out.println("处理Get请求...");
        
        response.setContentType("text/html");
        PrintWriter out = response.getWriter();
        out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
        out.println("<HTML>");
        out.println("  <HEAD><TITLE>A Servlet</TITLE></HEAD>");
        out.println("  <BODY>");
        out.println("<strong>Hello Servlet!</strong><br>");
        out.println("  </BODY>");
        out.println("</HTML>");
        out.flush();
        out.close();
    }
    /**
     * The doPost method of the servlet. <br>
     *
     * This method is called when a form has its tag value method equals to post.
     *
     * @param request the request send by the client to the server
     * @param response the response send by the server to the client
     * @throws ServletException if an error occurred
     * @throws IOException if an error occurred
     */
    public void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        System.out.println("处理Post请求...");
        response.setContentType("text/html");
        PrintWriter out = response.getWriter();
        out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
        out.println("<HTML>");
        out.println("  <HEAD><TITLE>A Servlet</TITLE></HEAD>");
        out.println("  <BODY>");
        out.println("<strong>Hello Servlet!</strong><br>");
        out.println("  </BODY>");
        out.println("</HTML>");
        out.flush();
        out.close();
    }
    /**
     * Initialization of the servlet. <br>
     *
     * @throws ServletException if an error occurs
     */
    public void init() throws ServletException {
        // Put your code here
    }
}
 
2、index.jsp
<%@ page language="java" import="java.util.*" contentType="text/html; charset=utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
   
    <title>My JSP 'index.jsp' starting page</title>
        <meta http-equiv="pragma" content="no-cache">
        <meta http-equiv="cache-control" content="no-cache">
        <meta http-equiv="expires" content="0">   
        <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
        <meta http-equiv="description" content="This is my page">
        <!--
        <link rel="stylesheet" type="text/css" href="styles.css">
        -->
  </head>
 
  <body>
     <h1>使用MyEclipse创建Servlet小例子</h1>
    <hr>
    <a href="servlet/HelloServlet">Get方式请求HelloServlet</a><br>
    <form action="servlet/HelloServlet" method="post">
      <input type="submit" value="Post方式请求HelloServlet"/>
    </form>
  </body>
</html>
 
三 运行结果


 
  • 大小: 25.6 KB
1
0
分享到:
评论

相关推荐

    JSP项目MyEclipse编写servlet图书购买

    【JSP项目MyEclipse编写servlet图书购买】是一个典型的Web开发实践,主要涉及JavaServer Pages(JSP)技术和Servlet的结合使用。在这个项目中,开发者利用MyEclipse这一强大的集成开发环境(IDE)来构建一个图书购买...

    基于myeclipse编写javaBean+JSP+Servlet网上问卷调查系统源码.zip

    基于myeclipse编写javaBean+JSP+Servlet网上问卷调查系统源码.zip基于myeclipse编写javaBean+JSP+Servlet网上问卷调查系统源码.zip基于myeclipse编写javaBean+JSP+Servlet网上问卷调查系统源码.zip基于myeclipse编写...

    网上问卷调查系统 使用myeclipse编写 javaBean+JSP+Servlet.zip

    网上问卷调查系统 使用myeclipse编写 javaBean+JSP+Servlet.zip 1、该资源内项目代码经过严格调试,下载即用确保可以运行! 2、该资源适合计算机相关专业(如计科、人工智能、大数据、数学、电子信息等)正在做课程...

    myeclipse下的servlet+jsp

    【标题】"myeclipse下的servlet+jsp" 指的是在MyEclipse集成开发环境中,使用Servlet和JSP技术构建的一个Web应用程序。MyEclipse是Eclipse的一个扩展,特别针对Java EE开发者,提供了丰富的工具支持,包括创建、调试...

    使用myeclipse开发的简单火车票订票系统

    3. 开发工具:使用MyEclipse进行项目管理、代码编写和调试。 四、数据库设计 在MySQL中,我们需要创建如下的核心表: - `train`(火车信息):包含火车编号、起点、终点、出发时间等字段。 - `seat`(座位信息):...

    用myeclipse编写web步骤

    - **步骤1**:编写一个Java类,实现`Servlet`接口或继承`HttpServlet`。 - **步骤2**:编译Java源代码,确保已包含`servlet-api.jar`。 - **步骤3**:将编译后的`.class`文件及必要的库文件放入项目的`WEB-INF/...

    用户信息管理系统完整实现

    接着,使用MyEclipse编写Servlet和JSP代码,实现用户注册、登录、信息查询、修改和删除等功能。最后,通过部署到服务器,使得用户可以通过浏览器访问并交互这个信息管理系统。 在实际应用中,用户信息管理系统可以...

    用MyEclipse编写的分页小项目

    本项目“用MyEclipse编写的分页小项目”旨在帮助初学者快速理解和掌握分页技术的运用,通过实际操作提升技能水平。该项目基于Java Web开发工具MyEclipse,利用jsp进行前端展示,配合SQL Server 2005的AdventureWorks...

    网上书店系统用mysql和myeclipse编写

    总之,"网上书店系统用mysql和myeclipse编写"是一个涵盖了数据库设计、后端开发、前端界面构建和服务器部署的综合性项目。通过这个系统,我们可以学习到如何利用MySQL进行数据管理,运用MyEclipse进行Java Web开发,...

    myeclipse编写的jsp工程程序

    【标题】"myeclipse编写的jsp工程程序"是一个基于MyEclipse开发工具构建的JavaServer Pages(JSP)项目。MyEclipse是Eclipse的一个扩展,专为Java EE开发者设计,提供了丰富的功能,包括创建、调试和部署JSP应用程序...

    j2ee知识用MyEclipse编写的简单的bbs论坛

    【标题】"j2EE知识用MyEclipse编写的简单的BBS论坛"涉及的主要知识点是基于Java企业版(Java 2 Platform, Enterprise Edition,简称J2EE)的Web应用程序开发,利用MyEclipse集成开发环境(Integrated Development ...

Global site tag (gtag.js) - Google Analytics