⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sessioncount.java

📁 电信的网厅的整站代码
💻 JAVA
字号:
/*
 * 创建日期 2005-7-26
 *
 */
package com.doone.fj1w.fjmgr.sysmgr;

import javax.servlet.http.HttpSessionEvent;
import javax.servlet.http.HttpSessionListener;

/**
 * 
 */
public class SessionCount implements HttpSessionListener {

	private static int activeSessions = 0;

	/*
	 * (非 Javadoc)
	 * 
	 * @see javax.servlet.http.HttpSessionListener#sessionCreated(javax.servlet.http.HttpSessionEvent)
	 */
	public void sessionCreated(HttpSessionEvent arg0) {
		activeSessions++;

	}

	/*
	 * (非 Javadoc)
	 * 
	 * @see javax.servlet.http.HttpSessionListener#sessionDestroyed(javax.servlet.http.HttpSessionEvent)
	 */
	public void sessionDestroyed(HttpSessionEvent arg0) {
		if (activeSessions > 0)
			activeSessions--;

	}

	public static int getActiveSessions() {
		return activeSessions;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -