大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
本文实例讲述了Java基于servlet监听器实现在线人数监控功能的方法。分享给大家供大家参考,具体如下:
潮安网站制作公司哪家好,找成都创新互联公司!从网页设计、网站建设、微信开发、APP开发、响应式网站设计等网站项目制作,到程序开发,运营维护。成都创新互联公司2013年至今到现在10年的时间,我们拥有了丰富的建站经验和运维经验,来保证我们的工作的顺利进行。专注于网站建设就选成都创新互联公司。1、分析:
做一个网站在线人数统计,可以通过ServletContextListener监听,当Web应用上下文启动时,在ServletContext中添加一个List.用来准备存放在线的用户名,然后通过HttpSessionAttributeListener监听,当用户登录成功,把用户名设置到Session中。同时将用户名方法到ServletContext的List中,最后通过HttpSessionListener监听,当用户注销会话时,讲用户名从应用上下文范围中的List列表中删除。
2、注意事项
测试时,需要启动不同的浏览器来登陆不同的用户,只有点击注销按钮才能减少在线用户,关闭浏览器不能减少在线用户。
3、项目源代码
(1)java代码
OnlineListener类
package com.smalle.listener; import java.util.LinkedList; import java.util.List; import javax.servlet.ServletContext; import javax.servlet.ServletContextEvent; import javax.servlet.ServletContextListener; import javax.servlet.http.HttpSessionAttributeListener; import javax.servlet.http.HttpSessionBindingEvent; import javax.servlet.http.HttpSessionEvent; import javax.servlet.http.HttpSessionListener; public class OnlineListener implements ServletContextListener, HttpSessionAttributeListener, HttpSessionListener { private ServletContext application = null; //应用上下文初始时会回调的方法 @Override public void contextInitialized(ServletContextEvent e) { //初始化一个application对象 application = e.getServletContext(); //设置一个列表属性,用于保存在线用户名 this.application.setAttribute("online", new LinkedList()); } //往会话中添加属性时的回调方法 @Override public void attributeAdded(HttpSessionBindingEvent e) { //取得用户名列表 List onlines = (List ) this.application.getAttribute("online"); if("username".equals(e.getName())){ onlines.add((String) e.getValue()); } //将添加后的列表重新设置列application属性中. this.application.setAttribute("online", onlines); } //会话销毁时会回调的方法 @Override public void sessionDestroyed(HttpSessionEvent e) { //取得用户名列表 List onlines = (List ) this.application.getAttribute("online"); //取得当前用户名 String username = (String) e.getSession().getAttribute("username"); //将此用户从列表中删除 onlines.remove(username); //讲删除后的列表重新设置到application属性中. this.application.setAttribute("online", onlines); } public void sessionCreated(HttpSessionEvent e) {} public void attributeRemoved(HttpSessionBindingEvent e) {} public void attributeReplaced(HttpSessionBindingEvent e) {} public void contextDestroyed(ServletContextEvent e) {} }