zoukankan      html  css  js  c++  java
  • Servlet系列教材 (五)- 基础

    Servlet 需要提供对应的doGet() 与 doPost()方法

    步骤1:doGet()
    步骤2:doPost()
    步骤3:service()

    步骤 1 : doGet()

    当浏览器使用get方式提交数据的时候,servlet需要提供doGet()方法

    哪些是get方式呢?

    form默认的提交方式
    如果通过一个超链访问某个地址
    如果在地址栏直接输入某个地址
    ajax指定使用get方式的时候

    import java.io.IOException;

    import javax.servlet.ServletException;

    import javax.servlet.http.HttpServlet;

    import javax.servlet.http.HttpServletRequest;

    import javax.servlet.http.HttpServletResponse;

    public class LoginServlet extends HttpServlet {

        protected void doGet(HttpServletRequest request, HttpServletResponse response)

                throws ServletException, IOException {

        }

    }

    步骤 2 : doPost()

    当浏览器使用post方式提交数据的时候,servlet需要提供doPost()方法

    哪些是post方式呢?
    在form上显示设置 method="post"的时候
    ajax指定post方式的时候

    import java.io.IOException;

    import javax.servlet.ServletException;

    import javax.servlet.http.HttpServlet;

    import javax.servlet.http.HttpServletRequest;

    import javax.servlet.http.HttpServletResponse;

    public class LoginServlet extends HttpServlet {

        protected void doPost(HttpServletRequest request, HttpServletResponse response)

                throws ServletException, IOException {

        }

    }

    步骤 3 : service()

    LoginServlet继承了HttpServlet,同时也继承了一个方法 

    service(HttpServletRequest , HttpServletResponse )



    实际上,在执行doGet()或者doPost()之前,都会先执行service()

    由service()方法进行判断,到底该调用doGet()还是doPost()

    可以发现,service(), doGet(), doPost() 三种方式的参数列表都是一样的。

    所以,有时候也会直接重写service()方法,在其中提供相应的服务,就不用区分到底是get还是post了。

    比如把前面的登录的LoginServlet,改为提供service方法,也可以达到相同的效果

    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 LoginServlet extends HttpServlet {

        protected void service(HttpServletRequest request, HttpServletResponse response)

                throws ServletException, IOException {

            String name = request.getParameter("name");

            String password = request.getParameter("password");

            String html = null;

            if ("admin".equals(name) && "123".equals(password))

                html = "<div style='color:green'>success</div>";

            else

                html = "<div style='color:red'>fail</div>";

            PrintWriter pw = response.getWriter();

            pw.println(html);

        }

    }


    更多内容,点击了解: https://how2j.cn/k/servlet/servlet-service/549.html

  • 相关阅读:
    Web 3D是否需要WebAssembly?
    # Python设计模式 单例模式
    学写PEP,参与Python语言的设计
    Github仓库如何选择开源许可证
    程序猿的产品思考:2C与2B产品思维的区别
    vue-如何实现带参数跳转页面
    基于Redis在定时任务里判断其他定时任务是否已经正常执行完的方案
    IDEA创建SpringBoot的多模块项目教程
    如何优雅地使用Mybatis逆向工程生成类
    Activiti工作流框架学习笔记(二)之springboot2.0整合工作流Activiti6.0
  • 原文地址:https://www.cnblogs.com/Lanht/p/12615422.html
Copyright © 2011-2022 走看看