java web统计当前在线人数

写一个监听器,实现HttpSessionListener,与ServletRequestListener两个接口。

HttpSessionListener:有sessionCreated与sessionDestroyed两个方法。分别会在session创建与删除时触发。

ServletRequestListener:requestInitialized与requestDestroyed两个方法,分别在request请求前与后触发。

通过这个监听器实现统计在线人数

猜你喜欢

转载自blog.csdn.net/branguzi/article/details/79974698