JavaWeb学习——Listner监听器

2024-08-23 23:38

本文主要是介绍JavaWeb学习——Listner监听器,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一、监听器Listener
1.什么是监听器?
  监听器就是监听某个对象的的状态变化的组件
  监听器的相关概念:
    事件源:被监听的对象 ----- 三个域对象 request session servletContext
    监听器:监听事件源对象 事件源对象的状态的变化都会触发监听器 ---- 6+2
      注册监听器:将监听器与事件源进行绑定
      响应行为:监听器监听到事件源的状态变化时 所涉及的功能代码 ---- 程序员编写代码
2.监听器有哪些?
  第一维度:按照被监听的对象划分:ServletRequest域 HttpSession域ServletContext域
  第二维度:监听的内容分:监听域对象的创建与销毁的 监听域对象的属性变化的
监听器的分类
3.监听三大域对象的创建与销毁的监听器

(1)监听ServletContext域的创建与销毁的监听器ServletContextListener
 1)Servlet域的生命周期
    何时创建:服务器启动创建
    何时销毁:服务器关闭销毁

2)监听器的编写步骤(重点):
  a、编写一个监听器类去实现监听器接口
  b、覆盖监听器的方法
  c、需要在web.xml中进行配置—注册

/*** Application Lifecycle Listener implementation class MyServletContextListener**/
@WebListener
public class MyServletContextListener implements ServletContextListener {/*** Default constructor. */public MyServletContextListener() {// TODO Auto-generated constructor stub}/*** @see ServletContextListener#contextDestroyed(ServletContextEvent)* 监听context域对象的销毁*/public void contextDestroyed(ServletContextEvent arg0)  { System.out.println("context销毁了....");}/*** @see ServletContextListener#contextInitialized(ServletContextEvent)* 监听context域对象的创建*/public void contextInitialized(ServletContextEvent sce)  { //被监听的对象 ——ServletContextServletContext servletContext = sce.getServletContext();//通用方法  ——getSource()返回Object//ServletContext servletContext = (ServletContext) sce.getSource();
//    	System.out.println("context创建了....");//开启一个计息任务调度//创建一个定时器Timer timer = new Timer();//task:任务 ; firstTime:第一次执行时间; period:间隔执行时间//timer.schedule(task, firstTime, period);timer.scheduleAtFixedRate(new TimerTask() {@Overridepublic void run() {System.out.println("此时发生了!");}}, new Date(), 1000*5);}
}

在web.xml中配置监听器的代码:

  <listener><listener-class>com/zsl/test/MyServletContextListener</listener-class></listener>

但是在servlet3.0之后增加了使用注解配置监听器,不需要再在web.xml中添加配置代码,只需要在监听器的代码类上面添加@WebListener即可,如上面的代码所示。
  当服务启动的时候会自动创建域对象servletContext,监听器监听到servletContext的创建时便调用contextInitialized()方法,在服务正常关掉的时候会自动销毁域对象servletContext,此时监听器调用contextDestroyed()方法,其中参数 ServletContextEvent 就是被监听的对象,即事件源对象。
 3)ServletContextListener监听器的主要作用
  a、初始化的工作:初始化对象 初始化数据 ---- 加载数据库驱动 连接池的初始化
  b、加载一些初始化的配置文件 — spring的配置文件
  c、任务调度----定时器----Timer/TimerTask

(2)监听Httpsession域的创建于销毁的监听器HttpSessionListener
 1)HttpSession对象的生命周期
   何时创建:第一次调用request.getSession时创建
   何时销毁:服务器关闭销毁 session过期 手动销毁
   
 2)HttpSessionListener的方法

/*** Application Lifecycle Listener implementation class MySessionListener* HttpSession的监听器*/
@WebListener
public class MySessionListener implements HttpSessionListener {/*** Default constructor. */public MySessionListener() {// TODO Auto-generated constructor stub}/*** @see HttpSessionListener#sessionCreated(HttpSessionEvent)* 监听session的创建*/public void sessionCreated(HttpSessionEvent hse)  { HttpSession session = hse.getSession();System.out.println(session+"的session创建了");}/*** @see HttpSessionListener#sessionDestroyed(HttpSessionEvent)* 监听session的销毁*/public void sessionDestroyed(HttpSessionEvent hse)  { HttpSession session = hse.getSession();System.err.println(session+"的session销毁了");}
}

(3)监听ServletRequest域创建与销毁的监听器ServletRequestListener
  1)ServletRequest的生命周期
    创建:每一次请求都会创建request
    销毁:请求结束
  2)ServletRequestListener的方法

/*** Application Lifecycle Listener implementation class MyServletRequestListener* 监听ServletRequest**/
@WebListener
public class MyServletRequestListener implements ServletRequestListener {/*** Default constructor. */public MyServletRequestListener() {// TODO Auto-generated constructor stub}/*** @see ServletRequestListener#requestDestroyed(ServletRequestEvent)* 监听ServletRequest的创建*/public void requestDestroyed(ServletRequestEvent sre)  { ServletRequest request = sre.getServletRequest();System.out.println(request+"的request创建了");}/*** @see ServletRequestListener#requestInitialized(ServletRequestEvent)* 监听ServletRequest的销毁*/public void requestInitialized(ServletRequestEvent sre)  { ServletRequest request = sre.getServletRequest();System.out.println(request+"的request销毁了");}
}

4.监听三大域对象的属性变化的
  (1)域对象的通用的方法:
    setAttribute(name,value)
      — 触发添加属性的监听器的方法
      — 触发修改属性的监听器的方法
    getAttribute(name)
    removeAttribute(name)
     — 触发删除属性的监听器的方法
  (2)ServletContextAttibuteListener监听器

/*** Application Lifecycle Listener implementation class MyServletContextAttributeListener* 监听ServletContext属性的变化**/
@WebListener
public class MyServletContextAttributeListener implements ServletContextAttributeListener {/*** Default constructor. */public MyServletContextAttributeListener() {// TODO Auto-generated constructor stub}/*** @see ServletContextAttributeListener#attributeAdded(ServletContextAttributeEvent)* 监听ServletContext的新增*/public void attributeAdded(ServletContextAttributeEvent scae)  { System.out.println("ServletContext的属性如下:");System.out.println(scae.getName());//获取新增的属性的nameSystem.out.println(scae.getValue());//获取新增的属性的value}/*** @see ServletContextAttributeListener#attributeRemoved(ServletContextAttributeEvent)*/public void attributeRemoved(ServletContextAttributeEvent scae)  { System.out.println("此次删除的属性为:");System.out.println(scae.getName());//获取删除的属性的nameSystem.out.println(scae.getValue());//获取删除的属性的value}/*** @see ServletContextAttributeListener#attributeReplaced(ServletContextAttributeEvent)*/public void attributeReplaced(ServletContextAttributeEvent scae)  {System.out.println("修改前的属性为:");System.out.println(scae.getName());//获取修改前的属性的nameSystem.out.println(scae.getValue());//获取修改前的属性的value}}

测试的servlet代码如下:

/*** @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)*/protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {response.getWriter().append("Served at: ").append(request.getContextPath());//测试新增ServletContext属性ServletContext context = this.getServletContext();//向域中添加属性context.setAttribute("name", "zhangsan");context.setAttribute("age", 15);//修改域属性context.setAttribute("age", 20);//删除域属性context.removeAttribute("age");}

打印信息:

ServletContext的属性如下:
name
zhangsan
ServletContext的属性如下:
age
15
修改前的属性为:
age
15
此次删除的属性为:
age
20

(3) HttpSessionAttributeListener监听器(同上)
  (4) ServletRequestAriibuteListenr监听器(同上)
  
5.与session中的绑定的对象相关的监听器(对象感知监听器——即监听被绑定对象的监听器)
  (1)即将要被绑定到session中的对象有几种状态
    绑定状态:就一个对象被放到session域中
    解绑状态:就是这个对象从session域中移除了
    钝化状态:是将session内存中的对象持久化(序列化)到磁盘
    活化状态:就是将磁盘上的对象再次恢复到session内存中
    
  (2)绑定与解绑的监听器HttpSessionBindingListener(对象继承该监听器)
    绑定/解绑: 继承HttpSessionBindingListener并实现其绑定和解绑方法

public class Person implements HttpSessionBindingListener{private String name ;private Integer age ;public String getName() {return name;}public void setName(String name) {this.name = name;}public Integer getAge() {return age;}public void setAge(Integer age) {this.age = age;}@Overridepublic void valueBound(HttpSessionBindingEvent arg0) {System.out.println("Person被绑定了");}@Overridepublic void valueUnbound(HttpSessionBindingEvent arg0) {System.out.println("Person被解绑了");}
}

测试代码:

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {response.getWriter().append("Served at: ").append(request.getContextPath());//创建Person对象Person  person = new Person();person.setName("张三");person.setAge(25);//创建sessionHttpSession session = request.getSession();//将person绑定到session中session.setAttribute("person", person);//将person从session中解绑session.removeAttribute("person");}

打印结果:

Person被绑定了
Person被解绑了

(3)钝化与活化的监听器HttpSessionActivationListener
  继承HttpSessionActivationListener接口并实现钝化和活化接口

public class Person implements HttpSessionActivationListener,Serializable{private String name ;private Integer age ;public String getName() {return name;}public void setName(String name) {this.name = name;}public Integer getAge() {return age;}public void setAge(Integer age) {this.age = age;}@Overridepublic void sessionDidActivate(HttpSessionEvent arg0) {System.out.println("Person被活化了");}@Overridepublic void sessionWillPassivate(HttpSessionEvent arg0) {System.out.println("person被钝化了");}
}

先将Person绑定到session中,然后当该session中的Person保存到磁盘,即当Person对象被钝化,则打印“person被钝化了”,下次重新访问服务器时候取session中的Person的时候,即Person被活化,则打印“person被活化了”。
  注:对象如果想要被序列化,需要继承Serializable(java.io.Serializable)接口

可以通过配置文件 指定对象钝化时间 — 对象多长时间不用被钝化
  在META-INF下创建一个context.xml

<Context><!-- maxIdleSwap:session中的对象多长时间不使用就钝化 --><!-- directory:钝化后的对象的文件写到磁盘的哪个目录下  配置钝化的对象文件在work/catalina/localhost/钝化文件 --><!-- maxIdleSwap设置时间,表示多久不用则对象被钝化,1表示1分钟;  directory:设置存储文件名--><Manager className="org.apache.catalina.session.PersistentManager" maxIdleSwap="1"><Store className="org.apache.catalina.session.FileStore" directory="itcast205" /></Manager>
</Context>

这篇关于JavaWeb学习——Listner监听器的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1100821

相关文章

详解Java如何向http/https接口发出请求

《详解Java如何向http/https接口发出请求》这篇文章主要为大家详细介绍了Java如何实现向http/https接口发出请求,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 用Java发送web请求所用到的包都在java.net下,在具体使用时可以用如下代码,你可以把它封装成一

SpringBoot使用Apache Tika检测敏感信息

《SpringBoot使用ApacheTika检测敏感信息》ApacheTika是一个功能强大的内容分析工具,它能够从多种文件格式中提取文本、元数据以及其他结构化信息,下面我们来看看如何使用Ap... 目录Tika 主要特性1. 多格式支持2. 自动文件类型检测3. 文本和元数据提取4. 支持 OCR(光学

Java内存泄漏问题的排查、优化与最佳实践

《Java内存泄漏问题的排查、优化与最佳实践》在Java开发中,内存泄漏是一个常见且令人头疼的问题,内存泄漏指的是程序在运行过程中,已经不再使用的对象没有被及时释放,从而导致内存占用不断增加,最终... 目录引言1. 什么是内存泄漏?常见的内存泄漏情况2. 如何排查 Java 中的内存泄漏?2.1 使用 J

JAVA系统中Spring Boot应用程序的配置文件application.yml使用详解

《JAVA系统中SpringBoot应用程序的配置文件application.yml使用详解》:本文主要介绍JAVA系统中SpringBoot应用程序的配置文件application.yml的... 目录文件路径文件内容解释1. Server 配置2. Spring 配置3. Logging 配置4. Ma

Java 字符数组转字符串的常用方法

《Java字符数组转字符串的常用方法》文章总结了在Java中将字符数组转换为字符串的几种常用方法,包括使用String构造函数、String.valueOf()方法、StringBuilder以及A... 目录1. 使用String构造函数1.1 基本转换方法1.2 注意事项2. 使用String.valu

java脚本使用不同版本jdk的说明介绍

《java脚本使用不同版本jdk的说明介绍》本文介绍了在Java中执行JavaScript脚本的几种方式,包括使用ScriptEngine、Nashorn和GraalVM,ScriptEngine适用... 目录Java脚本使用不同版本jdk的说明1.使用ScriptEngine执行javascript2.

Spring MVC如何设置响应

《SpringMVC如何设置响应》本文介绍了如何在Spring框架中设置响应,并通过不同的注解返回静态页面、HTML片段和JSON数据,此外,还讲解了如何设置响应的状态码和Header... 目录1. 返回静态页面1.1 Spring 默认扫描路径1.2 @RestController2. 返回 html2

Spring常见错误之Web嵌套对象校验失效解决办法

《Spring常见错误之Web嵌套对象校验失效解决办法》:本文主要介绍Spring常见错误之Web嵌套对象校验失效解决的相关资料,通过在Phone对象上添加@Valid注解,问题得以解决,需要的朋... 目录问题复现案例解析问题修正总结  问题复现当开发一个学籍管理系统时,我们会提供了一个 API 接口去

Java操作ElasticSearch的实例详解

《Java操作ElasticSearch的实例详解》Elasticsearch是一个分布式的搜索和分析引擎,广泛用于全文搜索、日志分析等场景,本文将介绍如何在Java应用中使用Elastics... 目录简介环境准备1. 安装 Elasticsearch2. 添加依赖连接 Elasticsearch1. 创

Spring核心思想之浅谈IoC容器与依赖倒置(DI)

《Spring核心思想之浅谈IoC容器与依赖倒置(DI)》文章介绍了Spring的IoC和DI机制,以及MyBatis的动态代理,通过注解和反射,Spring能够自动管理对象的创建和依赖注入,而MyB... 目录一、控制反转 IoC二、依赖倒置 DI1. 详细概念2. Spring 中 DI 的实现原理三、