监听器
Posted 来自IT国的猴子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了监听器相关的知识,希望对你有一定的参考价值。
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package cn.toher.listener;
import cn.toher.bean.User;
import cn.toher.dao.UserLogDao;
import javax.servlet.http.HttpSession;
import javax.servlet.http.HttpSessionEvent;
import javax.servlet.http.HttpSessionListener;
/**
*
* @author Administrator
*/
public class SessionListener implements HttpSessionListener {
public SessionListener() {
}
;
@Override
public void sessionCreated(HttpSessionEvent se) {
}
@Override
public void sessionDestroyed(HttpSessionEvent se) {
HttpSession session = se.getSession();
User user = (User) session.getAttribute("Suser");
// 监听session中的user,如果它为空,则去动作
if (user != null) {
UserLogDao userLogDao = new UserLogDao();
userLogDao.addTimeout(user);
}
}
}
以上是关于监听器的主要内容,如果未能解决你的问题,请参考以下文章