原创地址:http://blog.csdn.net/jiaoxueli/article/details/2226134

  考虑到项目中统计在线用户数量和同一用户只能登陆一次的需求,查询联系 HttpSessionBindingListener接口的使用,记录以备后用,也供同样需要的同仁参考。

下面为我的测试例子,首先建个web工程,例子中程序包括:OnLineUser.java  ,login.jsp ,logout.jsp,onLineUser.jsp四个文件

OnLineUser.java清单:

package pub;

/*
 * onLineUser类实现HttpSessionBindingListener接口
 * onLineUser类将具有HttpSessionBindingListener接口的特有属性
 * 那么HttpSessionBindingListener接口的特有属性是什么呢?
 * HttpSessionBindingListener接口具有的两个空函数
 * public void valueBound(HttpSessionBindingEvent e)
 * public void valueUnBound(HttpSessionBindingEvent e)
 * 
 * onLineUser实现一些方法:获取在线用户数
 * 
 */

import javax.servlet.http.*; 
import java.util.*; 

public class OnLineUser implements HttpSessionBindingListener { 
   
   public OnLineUser(){
   } 

   private Vector users=new Vector();
   public int getCount(){
       users.trimToSize();//调整Vector users的容量为Vector users的大小
       return users.capacity();//返回users的容量
   }
   public boolean existUser(String userName){
       users.trimToSize();
       boolean existUser=false;
       for (int i=0;i<users.capacity();i++ )
       {
           if (userName.equals((String)users.get(i)))
           {
               existUser=true;
               break;
           }
       }
       return existUser;
   }

   public boolean deleteUser(String userName) {
       users.trimToSize();
       if(existUser(userName)){
           int currUserIndex=-1;
           for(int i=0;i<users.capacity();i++){
               if(userName.equals((String)users.get(i))){
                   currUserIndex=i;
                   break;
               }
           }
           if (currUserIndex!=-1){
               users.remove(currUserIndex);
               users.trimToSize();
               return true;
           }
       }
       return false;
   }

   public Vector getOnLineUser()
   {
       return users;
   }
   
   public void valueBound(HttpSessionBindingEvent e) { 
       users.trimToSize();
       System.out.println("请求:::::::::::"+e.getName());
    if(!existUser(e.getName())){
        users.add(e.getName());
        System.out.print(e.getName()+"    登入到系统 "+(new Date()));
        System.out.println("      在线用户数为:"+getCount());
    }else{
        System.out.println(e.getName()+"已经存在");
        }
   } 
 
   public void valueUnbound(HttpSessionBindingEvent e) { 
    users.trimToSize();
    String userName=e.getName();
    deleteUser(userName);
    System.out.print(userName+"    退出系统 "+(new Date()));
    System.out.println("      在线用户数为:"+getCount());
   } 
   
   
}

login.jsp 清单:

<%@ page contentType="text/html;charset=gb2312" %> 
<html>
<head>
<title>测试HttpSessionBindingListener接口</title>
</head>

<body>
<form name="login" method="post" action="onLineUser.jsp">
<input type=text name="username">
<input type=submit name="submit" value="登陆">
</form>
</body>
</html>

logout.jsp清单:

<%@ page contentType="text/html;charset=gb2312" %> 
<%@ page import="pub.OnLineUser,java.util.*" %> 
<jsp:useBean id="onlineuser" class="pub.OnLineUser" scope="application"/>
<html> 
<head> 
<title>搞定JSP在线人数</title>
</head>
<body> 
<center> 
  <h1>登陆成功,欢迎您访问!</h1>
</center>
<% 
   String username=request.getParameter("username");
   if(username!=null&&onlineuser.deleteUser(username)){
       out.println(username+"已经退出系统!");
       session.removeAttribute(username);
       out.println("<script>window.location="login.jsp";</script>");
   }else{
       out.println(username+"已经退出系统!");
       out.println("<script>window.location="login.jsp";</script>");
   }
%> 
<center> 
  <p>elapsed制作</p>
  <p> </p>
  <p><a href="logout.jsp">退出系统</a></p>
</center> 
</body> 
</html>

onLineUser.jsp清单

<%@ page contentType="text/html;charset=gb2312" %> 
<%@page import="java.util.*,pub.*"%>
<jsp:useBean id="onlineuser" class="pub.OnLineUser" scope="application" />
<html> 
<head> 
<title>搞定JSP在线人数</title>
</head>
<body> 
<center> 
  <h1>登陆成功,欢迎您访问!</h1>
</center>
<%   session = request.getSession(false); %> 
<% 
   String username=request.getParameter("username");
   if (onlineuser.existUser(username)){
       out.println("用户<font color=red>"+username+"</font>已经登陆!");
   }else{
       session.setMaxInactiveInterval(600);//Sesion有效时长,以秒为单位
       session.setAttribute(username,onlineuser); 
       out.println("欢迎新用户:<font color=red>"+username+"</font>登陆到系统!");
   }
   out.println("<br>当前在线用户人数:<font color=red>"+onlineuser.getCount()+"</font><br>");
   Vector vt=onlineuser.getOnLineUser();
   Enumeration e = vt.elements();
   out.println("在线用户列表");
   out.println("<table border=1>");
   out.println("<tr><td>用户名</td></tr>");
   /*while(e.hasMoreElements()){
       out.println("<tr><td>");
       out.println((String)e.nextElement()+"<br>");
       out.println("</td></tr>");
   }
   下面的方法也是可以的,这两种方法都是可行的,其实Iterator是Enumeration的子类
   */
   for(Iterator it=vt.iterator();it.hasNext();){
       out.println("<tr><td>");
       out.println((String)it.next()+"<br>");
       out.println("</td></tr>");
   }
   out.println("</table>");
     
%> 
<center> 
  <p>elapsed制作</p>
  <p> </p>
<%
   out.println("<p><a href='logout.jsp?username="+username+"'>退出系统</a></p>");
%>
</center> 
</body> 
</html>

该监听器不需要在web.xml中配置listener,完成后部署启动,访问login.jsp测试即可。

关于使用HttpSessionBindingListener获取在线用户数,同一用户登陆一次的更多相关文章

  1. 基于tomcat获取在线用户数

    https://blog.csdn.net/smallnetvisitor/article/details/84697505 需求: 统计某应用的在线用户数 实现方案: 1.基于session监听(复 ...

  2. 阶段5 3.微服务项目【学成在线】_day18 用户授权_17-细粒度授权-获取当前用户信息

    3.4.1需求分析 要想实现只查询自己的课程信息则需要获取当前用户所属的企业id. 1.认证服务在用户认证通过将用户所属公司id等信息存储到jwt令牌中. 2.用户请求到达资源服务后,资源服务需要取出 ...

  3. Python GUI之tkinter窗口视窗教程大集合(看这篇就够了) JAVA日志的前世今生 .NET MVC采用SignalR更新在线用户数 C#多线程编程系列(五)- 使用任务并行库 C#多线程编程系列(三)- 线程同步 C#多线程编程系列(二)- 线程基础 C#多线程编程系列(一)- 简介

    Python GUI之tkinter窗口视窗教程大集合(看这篇就够了) 一.前言 由于本篇文章较长,所以下面给出内容目录方便跳转阅读,当然也可以用博客页面最右侧的文章目录导航栏进行跳转查阅. 一.前言 ...

  4. PHP统计当前在线用户数实例

    HTML 我们在页面上放置一个显示当前在线人数的div#total以及一个用于展示访客地区分布的列表#onlinelist,默认我们在列表中放置一张与加载动画图片,后面我们用jQuery控制当鼠标滑向 ...

  5. websocket 无需通过轮询服务器的方式以获得响应 同步在线用户数 上线下线 抓包 3-way-handshake web-linux-shell 开发

    https://code.google.com/archive/p/phpwebsocket/source/default/source The WebSocket API (WebSockets) ...

  6. 基于express+redis高速实现实时在线用户数统计

    作者:zhanhailiang 日期:2014-11-09 本文将介绍怎样基于express+redis高速实现实时在线用户数统计. 1. 在github.com上创建项目uv-tj.将其同步到本地: ...

  7. 在线用户数-Constants

    package com.pb.news.constants; public class Constants { public static int ONLINE_USER_COUNT=0;//在线用户 ...

  8. 获取用户登陆所在的ip及获取所属信息

    package com.tcl.topsale.download.entity; public class GeoLocation { private String countryCode; priv ...

  9. 转:通过ASP.Net页面获取域用户名(当前登陆的用户)

    通过ASP.Net页面获取域用户名(当前登陆的用户) 原文地址: https://www.cnblogs.com/fast-michael/archive/2011/03/14/2057954.htm ...

随机推荐

  1. linux配置加载顺序

    linux加载配置项时通过下面方式 首先 加载/etc/profile配置 然后 加载/ect/profile.d/下面的所有脚本 然后 加载当前用户 .bash_profile 然后 加载.bash ...

  2. L - 辗转相除法(第二季水)

    Description The least common multiple (LCM) of a set of positive integers is the smallest positive i ...

  3. Fragment与Activity

    一个Fragment的实例总是和包含它的Activity直接相关. fragment可以通过getActivity() 方法来获得Activity的实例,然后就可以调用一些例如findViewById ...

  4. iOS中判断设备系统版本

    @import url(http://i.cnblogs.com/Load.ashx?type=style&file=SyntaxHighlighter.css);@import url(/c ...

  5. 进程外Session和进程内Session存储

  6. MDX基础

    第一章 看了本书的第一章,总体一个印象,废话真多.话不多说:整理书中知识点,实践出真理! 知识点:MDX语法:简单的函数介绍; 首先语法网上流传的很多,读者应该具备cube(多维数据集)的知识基础,我 ...

  7. python学习day12

    目录 html结构与标签 css样式   html结构之head <head> 标签用于定义文档的头部,它是所有头部元素的容器.<head> 中的元素可以引用脚本.指示浏览器在 ...

  8. USB Mass Storage大容量存储的基本知识

    http://www.crifan.com/files/doc/docbook/usb_disk_driver/release/htmls/ch02_msc_basic.html 目录 2.1. US ...

  9. linux系统怎么改为中文版(转)

    linux系统安装好后怎么改为中文版呢?今天就跟大家介绍下linux系统改为中文版的方法,希望能帮助到大家! 以下是linux系统改为中文版的四种方法,一起来看看: 方法1:写入环境变量 echo & ...

  10. mysql perl 抓取update语句

    <pre name="code" class="html"><pre name="code" class="ht ...