用session監聽器簡單實現統計在線用戶數

項目目錄結構以下,爲一普通的javaweb項目,不須要添加任何jar包 輸入圖片說明css

原項目各文件代碼以下:html

package com.my.count;

import javax.servlet.http.*;

public class SessionCounter implements HttpSessionListener {

    private static int activeSessions = 0;
    //session建立時執行
    public void sessionCreated(HttpSessionEvent se) {
        activeSessions++;
    }
    //session銷燬時執行
    public void sessionDestroyed(HttpSessionEvent se) {
        if (activeSessions > 0)
            activeSessions--;
    }
    //獲取活動的session個數(在線人數)
    public static int getActiveSessions() {
        return activeSessions;
    }

}

配置web.xml,注意去掉 //及後面的註釋內容,不然web.xml 會有錯誤java

<listener>
      <listener-class>
          com.my.count.SessionCounter  //這裏是包名加類名
      </listener-class>
  </listener>

接下來index.jsp頁面web

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%@ page import="com.my.count.SessionCounter"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'ApplicationTest.jsp' starting page</title>
    
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->

  </head>
  
  <body>
        在線人數爲:<%=SessionCounter.getActiveSessions() %>
  </body>
</html>

原文提供內容很詳細,把這些配置到項目訪問一下,頁面結果以下圖 輸入圖片說明瀏覽器

看似是正常的,但仍是懷疑統計不許確,用jemeter軟件模擬訪問測試一下,測試前先修改SessionCounter類爲以下內容, 輸入圖片說明session

代碼以下:併發

package com.my.count;


import javax.servlet.http.*;

public class SessionCounter implements HttpSessionListener {

    private static int activeSessions = 0;
    //session建立時執行
    public void sessionCreated(HttpSessionEvent se) {
        activeSessions++;
        System.out.println("增長1個同時在線數="+activeSessions);
    }
    //session銷燬時執行
    public void sessionDestroyed(HttpSessionEvent se) {
        //if (activeSessions > 0)
            activeSessions--;
        System.out.println("減小1個同時在線數="+activeSessions);
    }
    //獲取活動的session個數(在線人數)
    public static int getActiveSessions() {
        return activeSessions;
    }

}

爲了使session時間短一點,這裏設置項目的session過時時間爲1分鐘,在web.xml裏添加以下內容jsp

<!-- 設置項目session過時時間爲1分鐘 -->
  <session-config>    
  	<session-timeout>1</session-timeout>    
  </session-config>

web.xml完整內容以下 輸入圖片說明測試

啓動項目並用多個瀏覽器訪問結果,以下 輸入圖片說明 兩個瀏覽器訪問,顯示數據爲2.正常。如今用jemeter測試 輸入圖片說明 輸入圖片說明ui

啓動測試 控制檯輸出到5000多,中止jemeter,而後等1分鐘看控制檯輸出,結果分別以下圖 輸入圖片說明 建立5000多個session。 等1分鐘session過時後銷燬,看控制檯輸出結果以下: 輸入圖片說明

看來監聽session建立銷燬來統計訪問用戶數並不許確。懷疑是併發致使的增長1個和減小1個不許確。 修改SessionCounter類以下 輸入圖片說明

代碼:

package com.my.count;


import javax.servlet.http.*;

import sun.misc.Lock;

public class SessionCounter implements HttpSessionListener {

    private static volatile int activeSessions = 0;
    private static Lock l=new Lock();
    //session建立時執行
    public void sessionCreated(HttpSessionEvent se) {
    	getCount("+");
    }
    //session銷燬時執行
    public void sessionDestroyed(HttpSessionEvent se) {
    	getCount("-");
    }
    //獲取活動的session個數(在線人數)
    public static int getActiveSessions() {
        return activeSessions;
    }
    
    public  static void getCount(String regex) {
    	
    	try {
			l.lock();
	    	if(regex.equals("+")){
	    		activeSessions++;
	    		 System.out.println("++1個同時在線數="+activeSessions);
	    	}else if(regex.equals("-")){
	    		activeSessions--;
	    		 System.out.println("--1個同時在線數="+activeSessions);
	    	}
    	} catch (InterruptedException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}finally {
			l.unlock();
		}
    }

}

而後重啓項目,用jemeter測試,查看控制檯輸出: 輸入圖片說明 建立5000多個session後中止jemeter,等1分鐘看session銷燬狀況。 輸入圖片說明

此次準確了,問題就在於併發問題沒妥善處理。

附上原做者博客地址,感謝做者提供的源碼。 參考網址:輸入圖片說明 http://blog.csdn.net/u014756827/article/details/70169628

相關文章
相關標籤/搜索