JAVA监听器

1.监听器定义
监听器也叫Listener,是Servlet的监听器,它可以监听客户端的请求、服务端的操作等。通过监听器,可以自动激发一些操作,比如监听在线的用户的数量。

2.常见的监听器
1)ServletContextAttributeListener
ServletContextAttributeListener监听对ServletContext属性的操作,比如增加、删除、修改属性。

ServletContextListener监听ServletContext对象。

当创建ServletContext时,激发contextInitialized(ServletContextEvent sce)方法;

当销毁ServletContext时,激发contextDestroyed(ServletContextEvent sce)方法。

2)HttpSessionListener
HttpSessionListener监听HttpSession的操作:
  当创建一个Session时,激发sessionCreated(HttpSessionEvent se)方法;

当销毁一个Session时,激发sessionDestroyed(HttpSessionEvent se)方法。

3)HttpSessionAttributeListener
HttpSessionAttributeListener监听HttpSession中的属性的操作:

当在Session增加一个属性时,激发attributeAdded(HttpSessionBindingEvent se)方法;

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

当在Session属性被重新设置时,激发attributeReplaced(HttpSessionBindingEvent se) 方法。

3.案例 监听器统计在线人数
用户登录成功后将登录信息存储至session中 然后在监听器内进行计算 显示数量在页面
shouye.jsp
 

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%--
  Created by IntelliJ IDEA.
  User: root
  Date: 2021/9/24
  Time: 11:05
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>首页</title>
</head>
<body>
欢迎:${student.name},当前在线人数:${count}
</table>
</body>
</html>

listener.OnlineListener.java

package listener;

import javax.servlet.annotation.WebListener;
import javax.servlet.http.HttpSessionAttributeListener;
import javax.servlet.http.HttpSessionBindingEvent;

@WebListener
public class OnlineListener implements HttpSessionAttributeListener {
    private static int count=0;

    @Override
    public void attributeAdded(HttpSessionBindingEvent se) {
        System.out.println("添加session属性值");
        Object user=se.getSession().getAttribute("student");
        if(user!=null){
            count++;
            se.getSession().getServletContext().setAttribute("count",count);
        }
    }

    @Override
    public void attributeRemoved(HttpSessionBindingEvent se) {
        System.out.println("移除session属性...");
        count--;
        se.getSession().getServletContext().setAttribute("count",count);
    }

    @Override
    public void attributeReplaced(HttpSessionBindingEvent se) {

    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值