1.先 使用MyHttpSessionListener 接口 HttpSessionListener
每次新建一个session 获取sessionId 统计在线人数
2.MyServletRequestListener 接口 ServletRequestListener
每打开一个页面 即创建
通过request获取ip地址 创建时间 保存在userList
3.SessionUtil 判断两个sessionId是否相同
4.将userList保存在ServletContext(application)
每次新建一个session 获取sessionId 统计在线人数
2.MyServletRequestListener 接口 ServletRequestListener
每打开一个页面 即创建
通过request获取ip地址 创建时间 保存在userList
3.SessionUtil 判断两个sessionId是否相同
4.将userList保存在ServletContext(application)
2017-12-28
request.setAttribute();
request.getSession().setAttribute();
request.getServletContext().setAttribute();
这样就可以获得。
老师的request.getSession().getServletContext().setAttribute();也行
request.getSession().setAttribute();
request.getServletContext().setAttribute();
这样就可以获得。
老师的request.getSession().getServletContext().setAttribute();也行
2017-12-06