码迷,mamicode.com
首页 > Web开发 > 详细

HttpSessionActivationListener接口 学习笔记

时间:2018-04-20 16:53:48      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:HttpSessionActivatio

实现了HttpSessionActivationListener接口的 JavaBean 对象可以感知自己被活化和钝化的事件
当绑定到 HttpSession 对象中的对象将要随 HttpSession 对象被钝化之前,web 服务器调用如下方法sessionWillPassivate(HttpSessionBindingEvent event) 方法
当绑定到 HttpSession 对象中的对象将要随 HttpSession 对象被活化之后,web 服务器调用该对象的 void sessionDidActive(HttpSessionBindingEvent event)方法

<Manager className="org.apache.catalina.session.PersistentManager" maxIdleSwap="1">
<Store className="org.apache.catalina.session.FileStore" directory="itcast"/>
</Manager>
</Context>
注意:/META-INF/context.xml
package cn.vote.domain;

import javax.servlet.http.HttpSessionActivationListener;
import javax.servlet.http.HttpSessionEvent;

/** JavaBean对象,感知自已何时被钝化,何时被激活,由Web容器决定 */
public class Student implements HttpSessionActivationListener {
    private String username;

    public Student() {
    }

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public void sessionDidActivate(HttpSessionEvent se) {
    }

    public void sessionWillPassivate(HttpSessionEvent se) {
    }
}

技术分享图片

HttpSessionActivationListener接口 学习笔记

标签:HttpSessionActivatio

原文地址:http://blog.51cto.com/357712148/2105801

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!