• 监听会话范围内事件


    1.HttpSessionBindingListener接口

    注意:HttpSessionBindingLister接口是唯一不需要在Web.xml中设定的Listener

    2.HttpSessionAttributeListener接口

    HttpSessionAttributeListener主要监听HttpSession中的属性的操作。这和ServletContextAttributeListener比较类似。HttpSessionAttributeListener接口主要提供了如下方法:

    1.当在Session中增加一个属性时,激发attributeAdded(HttpSessionBNindingEvent Event)方法;

    2.当在Session删除一个属性时,激发attributeRemoved(HttpSessionBindingEvent event)方法;

    3.当在Session属性被重新设置时,激发attributeReplace(HttpSessionBindingEvent sce)方法;

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

    HttpSessionActivationListener接口

    该接口提供了两个方法

    public void sessionDidActivate(HttpSesionEvent hse):会话被激活。

    public void sessionWillPassivate(HttpSessionEvent hse):会话被迁移。

    主要用于同一个Session转移至不同的JVM的情形。Jsp/Sevrlet标准不要求一个Web容器支持分布试应用,但是他一定要支持HttpSessionActivationListener接口,以使代码可以支持分布式环境。

  • 相关阅读:
    Appium学习笔记(一)--安装与配置
    google软件测试之道--读后笔记
    Web测试中常见分享问题
    730工作总结
    Java源码分析系列
    LeetCode 21 -- Merge Two Sorted Lists
    LeetCode 20 -- Valid Parentheses
    LeetCode 15 -- 3Sum
    LeetCode 11 -- Container With Most Water
    ASP.NET Core MVC中Hangfire及EF Core的简单使用
  • 原文地址:https://www.cnblogs.com/hy66668888/p/5966198.html
Copyright © 2020-2023  润新知