HttpSessionListener监听Session的创建和失效

时间:2022-05-29 17:08:34
HttpSessionListener :


   Session创建事件发生在每次一个新的session创建的时候,类似地Session失效事件发生在每次一个Session失效的时候。

这个接口也只包含两个方法,分别对应于Session的创建和失效:
# public void sessionCreated(HttpSessionEvent se); 
# public void sessionDestroyed(HttpSessionEvent se);

 

我的web应用上想知道到底有多少用户在使用?

 

在网站中经常需要进行在线人数的统计。过去的一般做法是结合登录和退出功能,即当用户输入用户名密码进行登录的时候计数器加1,然后当用户点击退出按钮退出系统的时候计数器减1。这种处理方式存在一些缺点,例如:用户正常登录后,可能会忘记点击退出按钮,而直接关闭浏览器,导致计数器减1的操作没有及时执行;网站上还经常有一些内容是不需要登录就可以访问的,在这种情况下也无法使用上面的方法进行在线人数统计。
  我们可以利用Servlet规范中定义的事件监听器(Listener)来解决这个问题,实现更准确的在线人数统计功能。对每一个正在访问的用户,J2EE应用服务器会为其建立一个对应的HttpSession对象。当一个浏览器第一次访问网站的时候,J2EE应用服务器会新建一个HttpSession对象 ,并触发 HttpSession创建事件 ,如果注册了HttpSessionListener事件监听器,则会调用HttpSessionListener事件监听器的sessionCreated方法。相反,当这个浏览器访问结束超时的时候,J2EE应用服务器会销毁相应的HttpSession对象,触发 HttpSession销毁事件,同时调用所注册HttpSessionListener事件监听器的sessionDestroyed方法。

Java代码  HttpSessionListener监听Session的创建和失效
  1. import javax.servlet.http.HttpSessionListener;  
  2. import javax.servlet.http.HttpSessionEvent;  
  3.   
  4. public class SessionCounter implements HttpSessionListener {  
  5. private static int activeSessions =0;  
  6. /* Session创建事件 */  
  7. public void sessionCreated(HttpSessionEvent se) {  
  8.       ServletContext ctx = event.getSession( ).getServletContext( );  
  9.         Integer numSessions = (Integer) ctx.getAttribute("numSessions");  
  10.         if (numSessions == null) {  
  11.             numSessions = new Integer(1);  
  12.         }  
  13.         else {  
  14.             int count = numSessions.intValue( );  
  15.             numSessions = new Integer(count + 1);  
  16.         }  
  17.         ctx.setAttribute("numSessions", numSessions);  
  18. }  
  19. /* Session失效事件 */  
  20. public void sessionDestroyed(HttpSessionEvent se) {  
  21.  ServletContext ctx=se.getSession().getServletContext();  
  22.  Integer numSessions = (Integer)ctx.getAttribute("numSessions");  
  23.        if(numSessions == null)  
  24.             numSessions = new Integer(0);  
  25.         }  
  26.         else {  
  27.             int count = numSessions.intValue( );  
  28.             numSessions = new Integer(count - 1);  
  29.         }  
  30.         ctx.setAttribute("numSessions", numSessions);</span>  
  31.   
  32.   
  33.   
  34. }  
  35. }  

  在这个解决方案中,任何一个Session被创建或者销毁时,都会通知SessionCounter 这个类,当然通知的原因是必须在web.xml文件中做相关的配置工作。如下面的配置代码:

Java代码  HttpSessionListener监听Session的创建和失效
  1. <listener>  
  2.     <listener-class>demo.listener.SessionCounter</listener-class>  
  3. </listener>  

  以下两种情况下就会发生sessionDestoryed(会话销毁)事件:
   1.执行session.invalidate()方法时 。
      既然LogoutServlet.Java中执行session.invalidate()时,会触发sessionDestory()从在线用户 列表中清除当前用户,我们就不必在LogoutServlet.java中对在线列表进行操作了,所以LogoutServlet.java的内容现在是 这样。

Java代码  HttpSessionListener监听Session的创建和失效
  1. public void doGet(HttpServletRequest request,HttpServletResponse response)  
  2.     throws ServletException, IOException {  
  3.     // 销毁session  
  4.     request.getSession().invalidate();  
  5.     // 成功  
  6.     response.sendRedirect("index.jsp");  
  7. }  

 

   2.
      如果用户长时间没有访问服务器,超过了会话最大超时时间 ,服务器就会自动销毁超时的session。
      会话超时时间可以在web.xml中进行设置,为了容易看到超时效果,我们将超时时间设置为最小值。

Java代码  HttpSessionListener监听Session的创建和失效
  1. <session-config>  
  2.     <session-timeout>1</session-timeout>  
  3. </session-config>  

 

      时间单位是一分钟,并且只能是整数,如果是零或负数,那么会话就永远不会超时。

 

2.HttpSessionEvent

这是类代表一个web应用程序内更改会话事件通知。

 

Java代码  HttpSessionListener监听Session的创建和失效
  1. public class ShopSessionListener implements HttpSessionListener {  
  2.       
  3.     public void sessionCreated(HttpSessionEvent se) {  
  4.   
  5.     }     
  6.     public void sessionDestroyed(HttpSessionEvent se) {  
  7.         String sessionid = se.getSession().getId();  
  8.         EopSite site  =(EopSite)ThreadContextHolder.getSessionContext().getAttribute("site_key");  
  9.           
  10.         if(site!=null){  
  11.         ICartManager cartManager = SpringContextHolder.getBean("cartManager");  
  12.         cartManager.clean(sessionid,site.getUserid(),site.getId());  
  13.         }  
  14.     }  
  15. }  

 

se.getSession().getId();

HttpSession 接口中的getId():

          Returns a string containing the unique identifier assigned to this session.

          返回一个字符串,其中包含唯一标识符分配给本次会话。



import javax.servlet.ServletContext;
import javax.servlet.ServletRequestEvent;
import javax.servlet.ServletRequestListener;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSessionEvent;
import javax.servlet.http.HttpSessionListener;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import net.jeeshop.services.front.systemlog.SystemlogService;
import net.jeeshop.services.front.systemlog.bean.Systemlog;

import org.apache.commons.lang3.text.StrTokenizer;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;

public class SessionListener implements HttpSessionListener, ServletRequestListener {
@Autowired
private HttpServletRequest request;
// static ExecutorService fixedThreadPool;
private static Log log = LogFactory.getLog(SessionListener.class);
@Override
public void sessionCreated(HttpSessionEvent arg0) {
// TODO Auto-generated method stub
if (request != null && request.getRequestURI() != null && !request.getRequestURI().contains("manage")) {
String sip = request.getHeader("X-Forwarded-For");
if (sip == null || sip.length() == 0 || "unknown".equalsIgnoreCase(sip))
sip = request.getHeader("Proxy-Client-IP");
if (sip == null || sip.length() == 0 || "unknown".equalsIgnoreCase(sip))
sip = request.getHeader("WL-Proxy-Client-IP");
if (sip == null || sip.length() == 0 || "unknown".equalsIgnoreCase(sip))
sip = request.getHeader("HTTP_CLIENT_IP");
if (sip == null || sip.length() == 0 || "unknown".equalsIgnoreCase(sip))
sip = request.getHeader("HTTP_X_FORWARDED_FOR");
if (sip == null || sip.length() == 0 || "unknown".equalsIgnoreCase(sip))
sip = request.getRemoteAddr();
try {
if (!sip.contains("127.0.0.1") && !sip.contains("0:0:0:1")) {

ServletContext ctx = arg0.getSession( ).getServletContext( );
Integer numSessions = (Integer) ctx.getAttribute("numSessions");
if (arg0.getSession( ).isNew()) {
numSessions = new Integer(1);
addLog(arg0, sip);
}
else {
int count = numSessions.intValue( );
numSessions = new Integer(count + 1);
}
ctx.setAttribute("numSessions", numSessions);
}
} catch (Exception e) {
e.printStackTrace();
}
}
}

public void addLog(final HttpSessionEvent arg0, final String sip) {
String ip2 = getIpFromRequest(request);
if (ip2 == null) {
ip2 = sip;
} else if (!ip2.equals(sip)) {
ip2 = sip + ip2;
}

Systemlog systemlog = new Systemlog();
systemlogService.insert(systemlog);
// }
// });

}

public static final String _255 = "(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)";
public final Pattern pattern = Pattern.compile("^(?:" + _255 + "\\.){3}" + _255 + "$");

public String longToIpV4(long longIp) {
int octet3 = (int) ((longIp >> 24) % 256);
int octet2 = (int) ((longIp >> 16) % 256);
int octet1 = (int) ((longIp >> 8) % 256);
int octet0 = (int) ((longIp) % 256);
return octet3 + "." + octet2 + "." + octet1 + "." + octet0;
}

public long ipV4ToLong(String ip) {
String[] octets = ip.split("\\.");
return (Long.parseLong(octets[0]) << 24) + (Integer.parseInt(octets[1]) << 16)
+ (Integer.parseInt(octets[2]) << 8) + Integer.parseInt(octets[3]);
}

public boolean isIPv4Private(String ip) {
long longIp = ipV4ToLong(ip);
return (longIp >= ipV4ToLong("10.0.0.0") && longIp <= ipV4ToLong("10.255.255.255"))
|| (longIp >= ipV4ToLong("172.16.0.0") && longIp <= ipV4ToLong("172.31.255.255"))
|| longIp >= ipV4ToLong("192.168.0.0") && longIp <= ipV4ToLong("192.168.255.255");
}

public boolean isIPv4Valid(String ip) {
return pattern.matcher(ip).matches();
}

public String getIpFromRequest(HttpServletRequest request) {
String ip;
boolean found = false;
if ((ip = request.getHeader("x-forwarded-for")) != null) {
StrTokenizer tokenizer = new StrTokenizer(ip, ",");
while (tokenizer.hasNext()) {
ip = tokenizer.nextToken().trim();
if (isIPv4Valid(ip) && !isIPv4Private(ip)) {
found = true;
break;
}
}
}
if (!found) {
ip = request.getRemoteAddr();
}
return ip;
}

@Override
public void sessionDestroyed(HttpSessionEvent arg0) {
// TODO Auto-generated method stub

// System.out.println("---------------------------------------------------------------------------------------");
// System.out.println( arg0.getSession().getId() );
// System.out.println("---------------------------------------------------------------------------------------");
}

@Override
public void requestDestroyed(ServletRequestEvent arg0) {
// TODO Auto-generated method stub
}

@Override
public void requestInitialized(ServletRequestEvent arg0) {
// TODO Auto-generated method stub
request = (HttpServletRequest) arg0.getServletRequest();
}

}