• Servlet中Session会话追踪的实现机制


    什么是Session

    因为HTTP协议是一个无状态协议,即Web应用程序无法区分收到的两个HTTP请求是否是同一个浏览器发出的。为了跟踪用户状态,服务器可以向浏览器分配一个唯一ID,并以Cookie的形式发送到浏览器,浏览器在后续访问时总是附带此Cookie,这样,服务器就可以识别用户身份。

    我们把这种基于唯一ID识别用户身份的机制称为Session。每个用户第一次访问服务器后,会自动获得一个Session ID。如果用户在一段时间内没有访问服务器,那么Session会自动失效,下次即使带着上次分配的Session ID访问,服务器也认为这是一个新用户,会分配新的Session ID。一次Session会话中往往包含着若干次request请求。

    获取SessionID

    1. @WebServlet("/test.do")
    2. public class SessionTestServlet extends HttpServlet{
    3. @Override
    4. protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
    5. System.out.println("这是一个test测试");
    6. HttpSession session = req.getSession();
    7. System.out.println("sessionid是"+session.getId());
    8. }
    9. }

     

    HTTPSession的方法

    获取HttpSession后,常见的操作方法有:

    • void setAttribute(String name, Object value):将指定Key-Value键值对,存入当前Session会话中。
    • Object getAttribute(String name):按照指定的Key从当前Session会话中获取Value,返回值为Object类型的对象,如果不存在,则返回null
    • void removeAttribute(String name)按照指定的Key从当前Session会话中删除Key-Value键值对。
    • long getCreationTime()获取当前Session会话的创建时间
    • long getLastAccessedTime():获取当前Session会话最后一次请求的访问时间
    • String getId()获取当前Session会话的SESSION ID

    服务器识别Session的关键就是依靠一个名为JSESSIONIDCookie。在Servlet中第一次调用req.getSession()时,Servlet容器自动创建一个Session ID,然后通过一个名为JSESSIONIDCookie发送给浏览器!

    使用Session时,由于服务器把所有用户的Session都存储在内存中,如果遇到内存不足的情况,就需要把部分不活动的Session序列化到磁盘上,这会大大降低服务器的运行效率,因此,放入Session的数据不能太大,否则会影响服务器的运行。

    Session追踪机制

    在Servlet中我们可以通过实现HttpSessionListener,HttpSessionAttributeListener两个接口对Session会话进行监听!

    通过重写sessionCreated方法来监听会话的创建,

    通过重写sessionDestroyed方法来监听会话的销毁。

    通过重写attributeAdded方法来监听会话的的KV键值对的添加

    通过重写attributeReplaced方法来监听会话的的KV键值对的修改

    通过重写attributeRemoved方法来监听会话的的KV键值对的删除!

    1. @WebListener
    2. public class SessionListener implements HttpSessionListener,HttpSessionAttributeListener{
    3. @Override
    4. public void sessionCreated(HttpSessionEvent se) {
    5. //开始
    6. HttpSession currentSession = se.getSession();
    7. System.out.println("这是一个新的Session会话,ID是"+currentSession.getId());
    8. //统计总共的会话数
    9. ServletContext application = se.getSession().getServletContext();
    10. Integer totalCount = (Integer)application.getAttribute("total_session_count");
    11. if(totalCount==null) {
    12. application.setAttribute("total_session_count",1);
    13. }else {
    14. application.setAttribute("total_session_count",totalCount +1);
    15. }
    16. }
    17. @Override
    18. public void sessionDestroyed(HttpSessionEvent se) {
    19. System.out.println("结束销毁一个Session会话");
    20. ServletContext application = se.getSession().getServletContext();
    21. Integer totalCount = (Integer)application.getAttribute("total_session_count");
    22. if(totalCount!=null) {
    23. application.setAttribute("total_session_count",totalCount - 1);
    24. }
    25. }
    26. //添加新的KV键值对
    27. @Override
    28. public void attributeAdded(HttpSessionBindingEvent se) {
    29. if(se.getName().equals("isLogin")&&(boolean)(se.getValue())) {
    30. ServletContext application = se.getSession().getServletContext();
    31. Integer totalLoginCount = (Integer)application.getAttribute("total_login_count");
    32. if(totalLoginCount==null) {
    33. application.setAttribute("total_login_count",1);
    34. }else {
    35. application.setAttribute("total_login_count",totalLoginCount +1);
    36. }
    37. }
    38. }
    39. //修改KV键值对
    40. @Override
    41. public void attributeReplaced(HttpSessionBindingEvent se) {
    42. }
    43. //删除KV键值对
    44. @Override
    45. public void attributeRemoved(HttpSessionBindingEvent se) {
    46. }
    47. }

    特别的是需要注释里写出@WebListener来识别为监听器,可以通过Console控制台看到会话创建,以及会话总数的统计。

     

     

  • 相关阅读:
    TP5 queue队列详解
    什么浏览器广告少?多御安全浏览器轻体验
    10min快速回顾C++语法(八)STL专题
    Python filter 用法
    prompt learning受控文本生成作诗
    刷题记录(NC235611 牛牛国的战争,NC23803 DongDong认亲戚,NC235622 叠积木)
    【华为上机真题 2022】| 差点没过
    JSON和全局异常处理
    卡西欧5800程序集 第17篇 断链处理——长链篇
    有一个整数单链表L,设计一个算法逆置L中所有结点,Java
  • 原文地址:https://blog.csdn.net/m0_66605858/article/details/126485962