使用ServletContextListener和HttpSessionListener两种监听器实现记录当前网站在线人数

来源:互联网 发布:js获取第一个class 编辑:程序博客网 时间:2024/05/17 07:35

web.xml中配置:

 <listener>
   <listener-class>com.mcm.listener.ServletContextListenerImpl</listener-class>
  </listener>
  <listener>
   <listener-class>com.mcm.listener.HttpSessionListenerImpl</listener-class>
  </listener>

 

ServletContextListenerImpl类:

package com.mcm.listener;

import javax.servlet.ServletContext;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;

public class ServletContextListenerImpl implements ServletContextListener {

public void contextDestroyed(ServletContextEvent event) {
  ServletContext application = event.getServletContext();
  application.removeAttribute("onLineNum");
}

public void contextInitialized(ServletContextEvent event) {
  int num = 0;
  ServletContext application = event.getServletContext();
  application.setAttribute("onLineNum", num);
}

}

 

HttpSessionListenerImpl类:

 

package com.mcm.listener;

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

public class HttpSessionListenerImpl implements HttpSessionListener {

 public void sessionCreated(HttpSessionEvent event) {
  ServletContext application = event.getSession().getServletContext();
  Integer num = (Integer) application.getAttribute("onLineNum");
  if(num != null){
   int count = num;
   count = count + 1;
   application.setAttribute("onLineNum", count);
  }
 }

 public void sessionDestroyed(HttpSessionEvent event) {
  ServletContext application = event.getSession().getServletContext();
  Integer num = (Integer) application.getAttribute("onLineNum");
  int count = num;
  count = count - 1;
  application.setAttribute("onLineNum", count);
  
 }

}

index.jsp中:

当前在线人数:${onLineNum }

 

 

结果:

原创粉丝点击