`
白鹿洞书院
  • 浏览: 267 次
  • 性别: Icon_minigender_1
  • 来自: 广州
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论

Spring Listener相关技术

 
阅读更多
一、接口

1、EventListener

2、HttpSessionAttributeListener   继承EventListener接口

     HttpSessionAttributeListener是“属性改变监听器”,当在会话对象中加入属性、移除属性或替换属性时,相对应的attributeAdded()、attributeRemoved()与

     attributeReplaced()方法就会被调用,并分别传入HttpSessionBindingEvent。
package javax.servlet.http;
 
import java.util.EventListener;
 
public interface HttpSessionAttributeListener extends EventListener {
public void attributeAdded ( HttpSessionBindingEvent se );
public void attributeRemoved ( HttpSessionBindingEvent se );
public void attributeReplaced ( HttpSessionBindingEvent se );
 
}
 

如果希望容器在部署应用程序时,实例化实现HttpSessionAttributeListener的类并注册给应用程序,则同样也是在实现类上标注@WebListener:
...
@WebListener()
public class HttpSessionAttrListener
                   implements HttpSessionAttributeListener {
...
}

另一个方式是在web.xml下进行设置:
    ...
    <listener>
        <listener-class>cc.openhome.HttpSessionAttrListener</listener-class>
    </listener>

3、HttpSessionListener    继承EventListener接口
public interface HttpSessionListener extends EventListener {
    public void sessionCreated(HttpSessionEvent se);
    public void sessionDestroyed(HttpSessionEvent se);
}

  在HttpSession对象初始化或结束前,会分别调用sessionCreated()与session- Destroyed()方法,可以通过传入的HttpSessionEvent,使用getSession()取得HttpSession,    以针对会话对象作出相对应的创建或结束处理操作。

4、HttpSessionBindingListener

HttpSessionBindingListener是“对象绑定监听器”,如果有个即将加入HttpSession的属性对象,希望在设置给HttpSession成为属性或从HttpSession中移除时,可以收到HttpSession的通知,则可以让该对象实现HttpSessionBindingListener接口。
package javax.servlet.http;
import java.util.EventListener;
public interface HttpSessionBindingListener extends EventListener {
    public void valueBound(HttpSessionBindingEvent event);
    public void valueUnbound(HttpSessionBindingEvent event);
}

当用户输入正确的名称与密码时,首先会以用户名来创建User实例,而后加入HttpSession中作为属性。希望User实例被加入成为HttpSession属性时,可以自动从数据库中加载用户的其他数据,如地址、照片等,或是在日志中记录用户登录的信息,可以让User类实现HttpSessionBindingListener接口。

5. HttpSessionActivationListener

HttpSessionActivationListener是“对象迁移监听器”,其定义了两个方法sessionWillPassivate()与sessionDidActivate()。很多情况下,几乎不会使用到HttpSessionActivationListener。在使用到分布式环境时,应用程序的对象可能分散在多个JVM中。当HttpSession要从一个JVM迁移至另一个JVM时,必须先在原本的JVM上序列化(Serialize)所有的属性对象,在这之前若属性对象有实现HttpSessionActivationListener,就会调用sessionWillPassivate()方法,而 HttpSession迁移至另一个JVM后,就会对所有属性对象作反序列化,此时会调用sessionDidActivate()方法。

要可以序列化的对象必须实现Serializable接口。如果HttpSession属性对象中有些类成员无法作序列化,则可以在sessionWillPassivate()方法中做些替代处理来保存该成员状态,而在sessionDidActivate()方法中做些恢复该成员状态的动作。
概述:

Servlet监听器用于监听一些重要事件的发生,监听器对象可以在事情发生前、发生后可以做一些必要的处理。

接口:

目前Servlet2.4和JSP2.0总共有8个监听器接口和6个Event类,其中HttpSessionAttributeListener与

HttpSessionBindingListener 皆使用HttpSessionBindingEvent;HttpSessionListener和 HttpSessionActivationListener则都使用HttpSessionEvent;其余Listener对应的Event如下所示:



Listener接口

Event类
ServletContextListener

ServletContextEvent

ServletContextAttributeListener

ServletContextAttributeEvent

HttpSessionListener

HttpSessionEvent

HttpSessionActivationListener

HttpSessionAttributeListener

HttpSessionBindingEvent

HttpSessionBindingListener

ServletRequestListener

ServletRequestEvent

ServletRequestAttributeListener

ServletRequestAttributeEvent

分别介绍:

一 ServletContext相关监听接口

补充知识:

通过ServletContext 的实例可以存取应用程序的全局对象以及初始化阶段的变量。

在JSP文件中,application 是 ServletContext 的实例,由JSP容器默认创建。Servlet 中调用 getServletContext()方法得到 ServletContext 的实例。

注意:

全局对象即Application范围对象,初始化阶段的变量指在web.xml中,经由<context-param>元素所设定的变量,它的范围也是Application范围,例如:
<context-param>
 
<param-name>Name</param-name>
 
<param-value>browser</param-value>
 
</context-param>

当容器启动时,会建立一个Application范围的对象,若要在JSP网页中取得此变量时:

String name = (String)application.getInitParameter("Name");

或者使用EL时:

${initPara.name}

若是在Servlet中,取得Name的值方法:

String name = (String)ServletContext.getInitParameter("Name");

1.ServletContextListener:

用于监听WEB 应用启动和销毁的事件,监听器类需要实现javax.servlet.ServletContextListener 接口。

ServletContextListener 是 ServletContext 的监听者,如果 ServletContext 发生变化,如服务器启动时 ServletContext 被创建,服务器关闭时 ServletContext 将要被销毁。

ServletContextListener接口的方法:

void contextInitialized(ServletContextEvent sce)

通知正在接受的对象,应用程序已经被加载及初始化。

void contextDestroyed(ServletContextEvent sce)

通知正在接受的对象,应用程序已经被载出。

ServletContextEvent中的方法:

ServletContext getServletContext()

取得ServletContext对象

2.ServletContextAttributeListener:用于监听WEB应用属性改变的事件,包括:增加属性、删除属性、修改属性,监听器类需要实现javax.servlet.ServletContextAttributeListener接口。

ServletContextAttributeListener接口方法:

void attributeAdded(ServletContextAttributeEvent scab)

若有对象加入Application的范围,通知正在收听的对象

void attributeRemoved(ServletContextAttributeEvent scab)

若有对象从Application的范围移除,通知正在收听的对象

void attributeReplaced(ServletContextAttributeEvent scab)

若在Application的范围中,有对象取代另一个对象时,通知正在收听的对象

ServletContextAttributeEvent中的方法:

java.lang.String getName()

回传属性的名称

java.lang.Object getValue()

回传属性的值

二、HttpSession相关监听接口

1.HttpSessionBindingListener接口

注意:HttpSessionBindingListener接口是唯一不需要再web.xml中设定的Listener

当我们的类实现了HttpSessionBindingListener接口后,只要对象加入 Session范围(即调用HttpSession对象的setAttribute方法的时候)或从Session范围中移出(即调用HttpSession对象的 removeAttribute方法的时候或Session Time out的时候)时,容器分别会自动调用下列两个方法:

void valueBound(HttpSessionBindingEvent event)

void valueUnbound(HttpSessionBindingEvent event)

思考:如何实现记录网站的客户登录日志, 统计在线人数?

2.HttpSessionAttributeListener接口

HttpSessionAttributeListener监听HttpSession中的属性的操作。

当在Session增加一个属性时,激发attributeAdded(HttpSessionBindingEvent se) 方法;当在Session删除一个属性时,激发attributeRemoved(HttpSessionBindingEvent se)方法;当在Session属性被重新设置时,激发attributeReplaced(HttpSessionBindingEvent se) 方法。这和ServletContextAttributeListener比较类似。

3.HttpSessionListener接口

HttpSessionListener监听 HttpSession的操作。当创建一个Session时,激发session Created(HttpSessionEvent se)方法;当销毁一个Session时,激发sessionDestroyed (HttpSessionEvent se)方法。

4.HttpSessionActivationListener接口

主要用于同一个Session转移至不同的JVM的情形。

四、ServletRequest监听接口

1.ServletRequestListener接口

和ServletContextListener接口类似的,这里由ServletContext改为ServletRequest

2.ServletRequestAttributeListener接口

和ServletContextListener接口类似的,这里由ServletContext改为ServletRequest

有的listener可用于统计网站在线人数及访问量。 如下:

服务器启动时(实现ServletContextListener监听器contextInitialized方法),读取数据库,并将其用一个计数变量保存在application范围内

session创建时(实现HttpSessionListener监听器sessionCreated方法),读取计数变量加1并重新保存

服务器关闭时(实现ServletContextListener监听器contextDestroyed方法),更新数据库
分享到:
评论

相关推荐

    09. Spring Boot缓存技术

    此外,Spring Boot还提供了缓存事件监听机制,通过实现`ApplicationListener&lt;CacheEvictEvent&gt;`或`ApplicationListener&lt;CacheEventListener&gt;`接口,可以在缓存操作前后进行相应的业务处理。 在实际应用中,我们还...

    spring技术手册demo

    【Spring技术手册Demo】是针对初学者的一份详尽指南,涵盖了Spring框架的基础及核心特性。这份手册将引领你从零开始,逐步深入理解并掌握Spring框架的强大功能。以下是手册中涉及的关键知识点: **CH2_Spring入门**...

    spring2.0技术手册.PDF

    根据您提供的文件信息,以下是从标题、描述、标签和部分内容中提取出的Spring 2.0技术手册知识点的详细说明: 一、Spring框架简介 Spring是一个开源的Java平台,最初由Rod Johnson创建,并首次在2003年发布。它最初...

    特殊情况(ActionForm,Servlet, Filter, Listener)下Spring如何注入对象

    在Spring框架中,依赖注入(Dependency Injection,DI)是一种核心特性,它允许对象之间的...同时,随着技术的发展,如Spring Boot和Spring MVC等现代框架提供了更简便的解决方案,减少了这些特殊情况下的处理复杂性。

    面试知识点总结--Spring 应用框架技术.pdf

    Spring 应用框架技术知识点总结 Spring 是一个流行的 Java 应用框架,它提供了许多功能强大且灵活的技术来帮助开发者快速构建企业级应用程序。下面是 Spring 应用框架技术的知识点总结: 一、Spring 和 Struts 的...

    spring-spring-framework-4.3.24.RELEASE.zip

    6. **事件驱动模型**:Spring提供了基于ApplicationEvent和ApplicationListener的事件驱动模型,允许组件之间进行解耦通信。`org.springframework.context.event`包是实现这一功能的关键。 7. **测试支持**:Spring...

    消息队列springmq

    &lt;bean id="messageListenerContainer" class="org.springframework.jms.listener.DefaultMessageListenerContainer"&gt; &lt;property name="messageListener" ref="messageListener" /&gt; &lt;bean id="messageListener...

    Spring 应用框架技术面试题.doc

    本篇文章将深入探讨Spring框架的几个关键知识点,以帮助你准备Spring技术的面试。 1. **Spring与Struts的区别** - Struts是基于Model-View-Controller(MVC)模式的Web层框架,专注于处理HTTP请求和响应,主要负责...

    Spring4JAR包、Spring4API,Spring4源码

    本文将详细介绍Spring4的相关知识点。 首先,Spring4对Java 8的支持是一个重大更新。在Spring 3.x版本中,Java 8的一些新特性如Lambda表达式、日期和时间API、Stream API等并未得到很好的支持。但在Spring4中,这些...

    Spring Boot实战派(源码)

    《Spring Boot实战派》源码提供了丰富的学习材料,旨在帮助开发者深入理解并...通过分析《Spring Boot实战派》源码,读者不仅可以了解上述技术点,还能学习到如何在实际项目中应用这些技术,提升开发效率和代码质量。

    Spring-5.1.5源码

    总之,`Spring-5.1.5源码`的分析涵盖了Spring框架在Web应用中的核心功能,包括初始化、配置加载、依赖注入、AOP、异常处理以及现代化Web技术的支持。深入理解这些知识点,对于提升Spring框架的使用技巧和开发效率...

    webwork与spring集成

    &lt;listener-class&gt;org.springframework.web.context.ContextLoaderListener&lt;/listener-class&gt; &lt;/listener&gt; &lt;listener&gt; &lt;listener-class&gt;...

    spring技术详解

    Spring技术详解 Spring技术详解是Java框架中的一种重要技术,主要用于解决Java应用程序中的依赖问题。 Spring框架的核心机制是依赖注入(Dependency Injection),也称为控制反转(Inversion of Control)。下面将...

    Listener单点登录与显示在线用户

    在本场景中,“Listener单点登录与显示在线用户”涉及到的技术点主要是网络应用中的身份验证、会话管理和实时用户状态监控。 单点登录(Single Sign-On, SSO)是一种允许用户通过一次认证过程访问多个应用系统的...

    Spring 3.0 整合Ibatis 3

    &lt;listener-class&gt;org.springframework.web.context.ContextLoaderListener&lt;/listener-class&gt; &lt;/listener&gt; ``` 这里需要注意的是,作者提到使用 Eclipse 的 User library 出现了问题,解决方法是直接将所需的库文件...

    spring配置步骤

    Spring框架的灵活性非常高,能够与多种不同的技术栈集成,例如Struts、Hibernate等。 #### 二、Spring配置步骤 在实际项目中,Spring的配置通常涉及多个方面,包括环境搭建、依赖管理、配置文件编写等。下面将详细...

    Spring开发jar包

    - AOP是Spring用于处理横切关注点(如日志、事务管理)的关键技术,它将这些关注点与业务逻辑分离,提高了代码的可维护性和复用性。 - Spring支持使用@Aspect注解定义切面,使用@Before、@After、@Around等注解...

    maven spring security框架搭建

    &lt;listener-class&gt;org.springframework.web.context.ContextLoaderListener&lt;/listener-class&gt; &lt;/listener&gt; ``` 此监听器用于加载Spring的上下文,在应用启动时初始化Spring容器。 4. **Spring MVC Dispatcher ...

    Java网络编程--基于Spring的JMS编程

    Java网络编程是一个广泛的领域,它涵盖了通过网络进行通信的各种技术和方法。在Java中,Spring框架提供了强大而灵活的支持,使得开发人员能够轻松地实现基于Java消息服务(JMS)的网络编程。JMS是一个标准接口,它...

    springmvc+spring+mybatis

    &lt;listener-class&gt;org.springframework.web.context.ContextLoaderListener&lt;/listener-class&gt; &lt;/listener&gt; &lt;param-name&gt;contextConfigLocation &lt;param-value&gt;classpath*:applicationDataSource.xml ``` 4. ...

Global site tag (gtag.js) - Google Analytics