servlet使用,生命周期,servletContext

servlet

自己怎么写一个servlet

1 创建一个javaweb项目

2 在src目录下写helloServlet,重写doGet和doPost方法

​ doGet:收到get请求时执行的方法

​ doPost:收到post请求时执行的方法

3 在web.xml下写<servlet-mapping>和<servlet>

4 启动项目,在浏览器中输入
在这里插入图片描述

5 然后在控制台上看到结果:输出了"get" 在这里插入图片描述

执行过程 :根据浏览器中输入的/hello 找到<servlet-name>是helloServlet,

找到这个servlet的位置<servlet-class>HelloServlet,根据你是get还是post请求执行doGet和doPost方法

//src目录下
public class HelloServlet extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        System.out.println("get");//在控制台上输出get
    }

    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        System.out.println("post");
    }
}
//写在web.xml文件下
<servlet-mapping>
    <!-- servlet的名字-->
        <servlet-name>helloServlet</servlet-name>
    <!-- url和这个servlet的匹配规则-->
        <url-pattern>/hello</url-pattern>
    </servlet-mapping>
    <servlet>
        <!-- servlet的名字,和上面的servlet名字必须一样-->
        <servlet-name>helloServlet</servlet-name>
        <!-- servlet的全限定类名,应为我直接写在src目录下,所以直接就写HelloServlet-->
        <servlet-class>HelloServlet</servlet-class>
    </servlet>

servlet的生命周期

1 Servlet 初始化后调用 init () 方法。

​ x x为整数**(这个标签可以不写,不写的时候默认是在第一次请求这个servlet时初始化)**

​ 在servlet标签中添加这个标签代表加载这个servlet的优先级

​ x为非负整数时,在项目启动时加载这个servlet,x越大则加载这个servlet的优先级越高

​ x为负整数时,代表这个servlet是在第一次使用时才加载他。

2 Servlet 调用 service() 法来处理客户端的请求。

3 Servlet 销毁前调用 destroy() 方法。

4 最后,Servlet 是由 JVM 的垃圾回收器进行垃圾回收的。

servlet对象详解

在这里插入图片描述

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-T8VgZh5C-1623891957297)(C:\Users\23655\Desktop\各种笔记\技术博客\servlet-about\servlet继承关系.jpg)]
在这里插入图片描述

![在这里插入图片描述](https://img-blog.csdnimg.cn/20210617090921950.jpg?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzQzNTM1MTI1,size_16,color_FFFFFF,t_70#pic_center)

我们一个一个类看过去

1 servletConfig接口

public interface ServletConfig {
    //获取servlet的名称
    String getServletName();
    
    //获取servletContext对象,通过这个对象可以获得servlet的路径,项目上下文路径等
    ServletContext getServletContext();

    String getInitParameter(String var1);

    Enumeration<String> getInitParameterNames();
}

2 servlet接口

首先是servlet接口 在java中接口一般定义了一些行为

servlet类中定义了init(),service(),destroy()方法,即初始化,接收处理客户端请求,销毁。

ServletConfig getServletConfig(); 获取servletConfig对象

getServletConfig(); 获取servletconfig对象

public interface Servlet {
    void init(ServletConfig var1) throws ServletException;

    ServletConfig getServletConfig();

    void service(ServletRequest var1, ServletResponse var2) throws ServletException, IOException;

    String getServletInfo();

    void destroy();
}

3 GenericServlet

通用servlet,顾名思义,定义了一些通用的方法,与使用的具体协议无关。

servlet理论上可以处理多种形式的请求响应形式, http只是其中之一。

为了能在servlet中方便的使用servletConfig对象,设计者贴心的在 GenericServlet中添加了一个ServletConfig 对象。

private transient ServletConfig config;

先来看init方法

 public void init(ServletConfig config) throws ServletException {
        this.config = config;
        this.init();
    }

    public void init() throws ServletException {
    }

为什么要提供两个init方法?

在Servlet初始化的时候,会自动调用init(ServletConfig config),容器会自动收集一些该Servlet的配置信息,生成一个ServletConfig的实例,通过调用该实例的四个getXXX方法(即ServletConfig接口中的四个方法),我们可以得到该Servlet的这些配置信息。

如果没有提供一个无参数的init()的话,你在重写init(ServletConfig config)方法时,容易忘记写this.config = config;

这样的话servlet的config对象就为null,那你通过servletconfig对象获取servlet名称,上下文等方法就会失效。

但是现在提供了一个无参的init方法,那你重写init方法时,容器自动调用this.config = config以及你重写的无参构造方法,这样一来就避免了servletConfig为null的问题

再来看service方法

是个抽象方法,看来还是得靠子类去实现

public abstract void service(ServletRequest var1, ServletResponse var2) throws ServletException, IOException;

GenericServlet源码:

public abstract class GenericServlet implements Servlet, ServletConfig, Serializable {
    private static final long serialVersionUID = 1L;
    private transient ServletConfig config;

    public GenericServlet() {
    }

    public void destroy() {
    }

    public String getInitParameter(String name) {
        return this.getServletConfig().getInitParameter(name);
    }

    public Enumeration<String> getInitParameterNames() {
        return this.getServletConfig().getInitParameterNames();
    }

    public ServletConfig getServletConfig() {
        return this.config;
    }

    public ServletContext getServletContext() {
        return this.getServletConfig().getServletContext();
    }

    public String getServletInfo() {
        return "";
    }

    public void init(ServletConfig config) throws ServletException {
        this.config = config;
        this.init();
    }

    public void init() throws ServletException {
    }

    public void log(String message) {
        this.getServletContext().log(this.getServletName() + ": " + message);
    }

    public void log(String message, Throwable t) {
        this.getServletContext().log(this.getServletName() + ": " + message, t);
    }

    public abstract void service(ServletRequest var1, ServletResponse var2) throws ServletException, IOException;

    public String getServletName() {
        return this.config.getServletName();
    }
}

4 HttpServlet

先来看service方法

servlet调用service()方法处理客户端的请求,而我们只需要写doGet,doPost方法就行了
其中他定义了两种形式的service方法:

第一种接收ServletRequest req, ServletResponse res参数,但是在内部又调用了

request = (HttpServletRequest)req;
response = (HttpServletResponse)res;

转化成了HttpServletRequest req, HttpServletResponse resp

终究还是调用了第二个service()方法

//第一个
public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException {
        HttpServletRequest request;
        HttpServletResponse response;
        try {
            request = (HttpServletRequest)req;
            response = (HttpServletResponse)res;
        } catch (ClassCastException var6) {
            throw new ServletException(lStrings.getString("http.non_http"));
        }
    //看这个
        this.service(request, response);
    }
//第二个
protected void service(HttpServletRequest req, HttpServletResponse resp)

这是Httpservlet中重写的service方法,写的十分详细,根据请求的不同method调用不同方法,所以你只要专心实现doGet,doPost方法就行了,不用关注一些琐碎的细节。

//Httpservlet中重写的service方法(不太重要的地方用。。。代替了)
protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        String method = req.getMethod();
        long lastModified;
        if (method.equals("GET")) {
            。。。
                this.doGet(req, resp);
            。。。
        } else if (method.equals("HEAD")) {
            。。。
            this.doHead(req, resp);
        } else if (method.equals("POST")) {
            this.doPost(req, resp);
        } else if (method.equals("PUT")) {
            this.doPut(req, resp);
        } else if (method.equals("DELETE")) {
            this.doDelete(req, resp);
        } else if (method.equals("OPTIONS")) {
            this.doOptions(req, resp);
        } else if (method.equals("TRACE")) {
            this.doTrace(req, resp);
        } else {
            String errMsg = lStrings.getString("http.method_not_implemented");
            Object[] errArgs = new Object[]{method};
            errMsg = MessageFormat.format(errMsg, errArgs);
            resp.sendError(501, errMsg);
        }

    }

    

这是doGet和doPost方法的默认实现,需要你去重写。

protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        String msg = lStrings.getString("http.method_get_not_supported");
        this.sendMethodNotAllowed(req, resp, msg);
    }
    
   
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        String msg = lStrings.getString("http.method_post_not_supported");
        this.sendMethodNotAllowed(req, resp, msg);
    }

ServletContext

servlet上下文,服务器会为每一个工程创建一个对象,这个对象就是ServletContext对象。这个对象全局唯一,而且工程内部的所有servlet都共享这个对象。所以叫全局应用程序共享对象。

获取途径:getServletContext(); 、getServletConfig().getServletContext();  第一种是直接拿,在GenericServlet中已经帮我们用getServletConfig().getServletContext();拿到了ServletContext。我们只需要直接获取就行了,第二种就相当于我们自己在获取一遍,两种读是一样的。

获取servletContext的两种方式实例:

@Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        System.out.println(getServletContext());
        System.out.println(getServletConfig().getServletContext());
    }

控制台输出:可以看出是同一个对象
在这里插入图片描述

ServletContext的作用:

  1. 是一个域对象

  2. 可以读取全局配置参数

  3. 可以搜索当前工程目录下面的资源文件

  4. 可以获取当前工程名字

    1域对象

    域对象:在一定范围内可以共享数据,即在各个servlet之间传递和共享数据

    在servlet1中增加的数据,可以在servlet2中获得

    servlet三大域对象的类型:HttpServletRequest HttpSession ServletContext

    域对象的三个方法

    ​ setAttribute(name,value);name是String类型,value是Object类型;

    ​ 往域对象里面添加数据,添加时以key-value形式添加

    ​ getAttribute(name);

    ​ 根据指定的key读取域对象里面的数据

    ​ removeAttribute(name);

    ​ 根据指定的key从域对象里面删除数据

    演示三个方法:
    在addName的servlet中加一个key为name,value为cccwz的键值对
    在getName的servlet中获得这个属性,并删除

    public class addName extends HttpServlet {
        @Override
        //在Servlet中ServletContext对象中加一个key为name,value为cccwz的键值对
        protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
            getServletContext().setAttribute("name","cccwz");
    
        }
    }
    
    public class getName extends HttpServlet {
        @Override
        protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
            //获取键为name的值
            System.out.println(getServletContext().getAttribute("name"));
            //删除这个键值对
            getServletContext().removeAttribute("name");
            System.out.println(getServletContext().getAttribute("name"));
    
        }
    }
    
    

控制台输出:
在这里插入图片描述

2 可以读取全局配置参数

在web.xml文件中配置全局参数,每个servlet都可以获取ServletContext对象然后获得这些参数

<context-param>
        <param-name>name1</param-name>
        <param-value>value1</param-value>
    </context-param>
    <context-param>
        <param-name>name2</param-name>
        <param-value>value2</param-value>
    </context-param>
    <context-param>
        <param-name>name3</param-name>
        <param-value>value3</param-value>
    </context-param>
public void init() throws ServletException {
    //获得所有全局配置参数
        Enumeration<String> initParameterNames = getServletContext().getInitParameterNames();
    //遍历这个枚举对象并输出
        while (initParameterNames.hasMoreElements()){
            String name = initParameterNames.nextElement();
            String value = getServletContext().getInitParameter(name);
            System.out.println("name:"+name+"value:"+value);
        }
    
        System.out.println(getServletContext().getInitParameter("name1"));
        System.out.println(getServletContext().getInitParameter("name2"));
        System.out.println(getServletContext().getInitParameter("name3"));
    }

控制台输出:
在这里插入图片描述

4 获取当前工程名字

就是浏览器地址栏http://localhost:8080/servletyuanma_war_exploded/hello中的/servletyuanma_war_exploded,端口号之后,请求路径之前的那一串。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值