📄 countlistener.java
字号:
package jaoso.count.web.listener;
import jaoso.count.service.CountService;
import jaoso.framework.service.ServiceLocator;
import javax.servlet.http.HttpSessionEvent;
import javax.servlet.http.HttpSessionListener;
/**
* @author ��Ե�¿� ͳ����������ļ�����
*/
public class CountListener implements HttpSessionListener {
/** �������� */
private static int onlineCount = 0;
/** ͳ�Ʒ��� */
private CountService countService;
/**
* (non-Javadoc)
*
* @see javax.servlet.http.HttpSessionListener#sessionCreated(javax.servlet.http.HttpSessionEvent)
*/
public final void sessionCreated(final HttpSessionEvent arg0) {
init();
countService.getCount(true);
onlineCount++;
}
/**
* (non-Javadoc)
*
* @see javax.servlet.http.HttpSessionListener#sessionDestroyed(javax.servlet.http.HttpSessionEvent)
*/
public final void sessionDestroyed(final HttpSessionEvent arg0) {
if (onlineCount > 0) {
onlineCount--;
}
}
/**
* @return Returns the onlineCount.
*/
public static int getOnlineCount() {
return onlineCount;
}
private void init() {
if (countService == null) {
countService = (CountService) ServiceLocator.getInstance()
.getService("countService");
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -