? import?javax.servlet.http.HttpSessionListener;



public?class?SessionListener?implements?HttpSessionListener?{
??private?Logger?logger=Logger.getLogger(this.getClass());
??private?long?count=0;
public?synchronized?void?sessionCreated(HttpSessionEvent?se)?{
???????this.count=this.count+1;
?????? se.getSession().getServletContext().setAttribute("count",this.count+"");
? }
public?synchronized?void?sessionDestroyed(HttpSessionEvent?se)?{
????? this.count=this.count-1;
????? se.getSession().getServletContext().setAttribute("count",this.count+"");
? }
}
注冊監聽到web.xml:







網頁上使用:
<%=application.getAttribute("count")%>