当前位置: 首页>后端>正文

JavaWeb之Listener监听器

什么是监听器?

监听器就是实时监视一些事物状态的程序,我们称为监听器。

比如:高铁上的烟雾探测器。当高铁在运行时,你在厕所偷偷抽烟,烟雾探测器检测到会发出警报。烟雾探测器就是监听器,高铁上的人就是被监听的对象,警报就是响应的内容。

什么是Listener监听器?
  • Listener 监听器是 JavaWeb 的三大组件之一。
  • Listener是一个接口,JavaWeb开发规范之一。

作用:
在JavaWeb开发中,主要用于监听web常见对象如 HttpServletRequest、HttpSession、ServletContext等,并对其创建与销毁、属性变化以及session绑定javaBean进行监听。
监听器Listener有多种类型,如监听三个域对象创建和销毁的事件监听器、监听域对象中属性的增加和删除的事件监听器、以及监听绑定到HttpSession域中的某个对象的状态的事件监听器。

监听器对象

监听器对象名称 监听器描述
ServletContextListener 监听ServletContext对象的创建和销毁的过程
HttpSessionListener 监听HttpSession对象的创建和销毁的过程
ServletRequestListener 监听ServletRequest对象的创建和销毁的过程
ServletContextAttributeListener 监听ServletContext的保存作用域的改动(add,remove,replace)
HttpSessionAttributeListener 监听HttpSession的保存作用域的改动(add,remove,replace)
ServletRequestAttributeListener 监听ServletRequest的保存作用域的改动(add,remove,replace)
HttpSessionBindingListener 监听某个对象在Session域中的创建与移除
HttpSessionActivationListener 监听某个对象在Session域中的序列化和反序列化

开发经验:
在实际工作中,使用ServletContextListener监听器使用比较多。
本次只讲述ServletContextListener监听器,其它监听器的使用都类似。

ServletContextListener 监听器

ServletContextListener 它可以监听 ServletContext 对象的创建和销毁。
ServletContext 对象在 web 工程启动的时候创建,在 web 工程停止的时候销毁。
监听到创建和销毁之后都会分别调用 ServletContextListener 监听器的方法反馈。
使用 ServletContextListener 监听器监听 ServletContext 对象,步骤如下:

  1. 编写一个子类去实现 ServletContextListener接口

  2. 实现其两个生命周期方法
    public void contextInitialized(ServletContextEvent sce) 是 ServletContext 对象的创建回调

    public void contextDestroyed(ServletContextEvent sce) 是 ServletContext 对象的销毁回调

  3. 到 web.xml 中去配置监听器

//@WebListener
public class MyListener implements ServletContextListener {

    //监听ServletContext上下文对象初始化
    @Override
    public void contextInitialized(ServletContextEvent servletContextEvent) {
        System.out.println("监听到ServletContext对象创建...");
    }

    //监听ServletContext上下文对象销毁
    @Override
    public void contextDestroyed(ServletContextEvent servletContextEvent) {
        System.out.println("监听到ServletContext对象销毁...");
    }
}
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
         version="4.0">

    <!-- 监听器配置 -->
    <listener>
        <listener-class>com.evan.java.MyListener</listener-class>
    </listener>
</web-app>

注意:
当使用Servlet3.0及以上版本的注解@WenListener监听的时候不需要配置web.xml。
结论:
监听对象在Tomcat服务器启动时触发初始化事件,在Tomcat服务器关闭时触发销毁事件。


https://www.xamrdz.com/backend/3h41934082.html

相关文章: