Tomcat源码分析(九)Session管理

本系列转载自 http://blog.csdn.net/haitao111313/article/category/1179996  

在明白Tomcat的Session机制之前,先要了解Session,Cookie,JSESSIONID这几个概念。JSESSIONID是一个唯一标识号,用来标识服务器端的Session,也用来标识客户端的Cookie,客户端和服务器端通过这个JSESSIONID来一一对应。这里需要说明的是Cookie已经包含JSESSIONID了,可以理解为JSESSIONID是Cookie里的一个属性。让我假设一次客户端连接来说明我对个这三个概念的理解:

     Http连接本身是无状态的,即前一次发起的连接跟后一次没有任何关系,是属于两次独立的连接请求,但是互联网访问基本上都是需要有状态的,即服务器需要知道两次连接请求是不是同一个人访问的。如你在浏览淘宝的时候,把一个东西加入购物车,再点开另一个商品页面的时候希望在这个页面里面的购物车还有上次添加进购物车的商品。也就是说淘宝服务器会知道这两次访问是同一个客户端访问的。
     客户端第一次请求到服务器连接,这个连接是没有附带任何东西的,没有Cookie,没有JSESSIONID。服务器端接收到请求后,会检查这次请求有没有传过来JSESSIONID或者Cookie,如果没有JSESSIONID和Cookie,则服务器端会创建一个Session,并生成一个与该Session相关联的JSESSIONID返回给客户端,客户端会保存这个JSESSIONID,并生成一个与该JSESSIONID关联的Cookie,第二次请求的时候,会把该Cookie(包含JSESSIONID)一起发送给服务器端,这次服务器发现这个请求有了Cookie,便从中取出JSESSIONID,然后根据这个JSESSIONID找到对应的Session,这样便把Http的无状态连接变成了有状态的连接。但是有时候浏览器(即客户端)会禁用Cookie,我们知道Cookie是通过Http的请求头部的一个cookie字段传过去的,如果禁用,那么便得不到这个值,JSESSIONID便不能通过Cookie传入服务器端,当然我们还有其他的解决办法,url重写和隐藏表单,url重写就是把JSESSIONID附带在url后面传过去。隐藏表单是在表单提交的时候传入一个隐藏字段JSESSIONID。这两种方式都能把JSESSIONID传过去。
     下面来看Tomcat是怎么实现以上流程的。从Tomcat源码分析(二)--连接处理可知,连接请求会交给HttpProcessor的process方法处理,在此方法有这么几句:
  1. parseConnection(socket);  
  2. parseRequest(input, output);//解析请求行,如果有jessionid,会在方法里面解析jessionid  
  3. if (!request.getRequest().getProtocol()  
  4.     .startsWith("HTTP/0"))  
  5.     parseHeaders(input);//解析请求头部,如果有cookie字段,在方法里面会解析cookie,  
下面看parseRequest方法里面是怎么解析jessionid的,这种解析方式是针对url重写的:
  1. parseRequest方法:  
  2. int semicolon = uri.indexOf(match);//match是“;JSESSIONID=”,即在请求行查找字段JSESSIONID  
  3.         if (semicolon >= 0) {                                   //如果有JSESSIONID字段,表示不是第一次访问  
  4.             String rest = uri.substring(semicolon + match.length());  
  5.             int semicolon2 = rest.indexOf(';');  
  6.             if (semicolon2 >= 0) {  
  7.                 request.setRequestedSessionId(rest.substring(0, semicolon2));//设置sessionid  
  8.                 rest = rest.substring(semicolon2);  
  9.             } else {  
  10.                 request.setRequestedSessionId(rest);  
  11.                 rest = "";  
  12.             }  
  13.             request.setRequestedSessionURL(true);  
  14.             uri = uri.substring(0, semicolon) + rest;  
  15.             if (debug >= 1)  
  16.                 log(" Requested URL session id is " +  
  17.                     ((HttpServletRequest) request.getRequest())  
  18.                     .getRequestedSessionId());  
  19.         } else {                               //如果请求行没有JSESSIONID字段,表示是第一次访问。  
  20.             request.setRequestedSessionId(null);  
  21.             request.setRequestedSessionURL(false);  
  22.         }  

代码没什么说的,看url有没有JSESSIONID,有就设置request的sessionid,没有就设置为null。有再看parseHeaders方法:
  1. parseHeaders方法:  
  2. .....  
  3. ....else if (header.equals(DefaultHeaders.COOKIE_NAME)) { //COOKIE_NAME的值是cookie  
  4.                 Cookie cookies[] = RequestUtil.parseCookieHeader(value);  
  5.                 for (int i = 0; i < cookies.length; i++) {  
  6.                     if (cookies[i].getName().equals  
  7.                         (Globals.SESSION_COOKIE_NAME)) {  
  8.                         // Override anything requested in the URL  
  9.                         if (!request.isRequestedSessionIdFromCookie()) {  
  10.                             // Accept only the first session id cookie  
  11.                             request.setRequestedSessionId  
  12.                                 (cookies[i].getValue());//设置sessionid  
  13.                             request.setRequestedSessionCookie(true);  
  14.                             request.setRequestedSessionURL(false);  
  15.                             if (debug >= 1)  
  16.                                 log(" Requested cookie session id is " +  
  17.                                     ((HttpServletRequest) request.getRequest())  
  18.                                     .getRequestedSessionId());  
  19.                         }  
  20.                     }  
  21.                     if (debug >= 1)  
  22.                         log(" Adding cookie " + cookies[i].getName() + "=" +  
  23.                             cookies[i].getValue());  
  24.                     request.addCookie(cookies[i]);  
  25.                 }  
  26.             }   
       代码主要就是从http请求头部的字段cookie得到JSESSIONID并设置到reqeust的sessionid,没有就不设置。这样客户端的JSESSIONID(cookie)就传到tomcat,tomcat把JSESSIONID的值赋给request了。这个request在Tomcat的唯一性就标识了。
     我们知道,Session只对应用有用,两个应用的Session一般不能共用,在Tomcat一个Context代表一个应用,所以一个应用应该有一套自己的Session,Tomcat使用Manager来管理各个应用的Session,Manager也是一个组件,跟Context是一一对应的关系,怎么关联的请参考Tomcat源码分析(一)--服务启动,方法类似。Manager的标准实现是StandardManager,由它统一管理Context的Session对象(标准实现是StandardSession),能够猜想,StandardManager一定能够创建Session对象和根据JSESSIONID从跟它关联的应用中查找Session对象。事实上StandardManager确实有这样的方法,但是StandardManager本身没有这两个方法,它的父类ManagerBase有这两个方法
  1. ManagerBase类的findSession和createSession()方法  
  2. public Session findSession(String id) throws IOException {  
  3.         if (id == null)  
  4.             return (null);  
  5.         synchronized (sessions) {  
  6.             Session session = (Session) sessions.get(id);//根据sessionid(即<span style="font-family: Arial; ">JSESSIONID</span>)查找session对象。  
  7.             return (session);  
  8.         }  
  9.     }  
  10. public Session createSession() { //创建session对象  
  11.         // Recycle or create a Session instance  
  12.         Session session = null;  
  13.         synchronized (recycled) {  
  14.             int size = recycled.size();  
  15.             if (size > 0) {  
  16.                 session = (Session) recycled.get(size - 1);  
  17.                 recycled.remove(size - 1);  
  18.             }  
  19.         }  
  20.         if (session != null)  
  21.             session.setManager(this);  
  22.         else  
  23.             session = new StandardSession(this);  
  24.   
  25.         // Initialize the properties of the new session and return it  
  26.         session.setNew(true);  
  27.         session.setValid(true);  
  28.         session.setCreationTime(System.currentTimeMillis());  
  29.         session.setMaxInactiveInterval(this.maxInactiveInterval);  
  30.         String sessionId = generateSessionId();//使用md5算法生成sessionId  
  31.         String jvmRoute = getJvmRoute();  
  32.         // @todo Move appending of jvmRoute generateSessionId()???  
  33.         if (jvmRoute != null) {  
  34.             sessionId += '.' + jvmRoute;  
  35.             session.setId(sessionId);  
  36.         }  
  37.         session.setId(sessionId);  
  38.         return (session);  
  39.     }  
      以上是StandardManager的管理Session的两个重要方法。这里有一个问题,Session是在什么时候生成的?仔细想想,我们编写servlet的时候,如果需要用到Session,会使用request.getSession(),这个方法最后会调用到HttpRequestBase的getSession()方法,所以这里有个重要的点:Session并不是在客户端第一次访问就会在服务器端生成,而是在服务器端(一般是servlet里)使用request调用getSession方法才生成的。但是默认情况下,jsp页面会调用request.getSession(),即jsp页面的这个属性<%@ page session="true" %>默认是true的,编译成servlet后会调用request.getSession()。所以只要访问jsp页面,一般是会在服务器端创建session的。但是在servlet里就需要显示的调用getSession(),当然是在要用session的情况。下面看这个getSession()方法:
  1. HttpRequestBase.getSession()  
  2.    调用---------------》  
  3.     HttpRequestBase.getSession(boolean create)  
  4.        调用 ----------------》  
  5.             HttpRequestBase.doGetSession(boolean create){  
  6.       if (context == null)  
  7.             return (null);  
  8.      
  9.         // Return the current session if it exists and is valid  
  10.         if ((session != null) && !session.isValid())  
  11.             session = null;  
  12.         if (session != null)  
  13.             return (session.getSession());  
  14.         // Return the requested session if it exists and is valid  
  15.         Manager manager = null;  
  16.         if (context != null)  
  17.             manager = context.getManager();  
  18.   
  19.         if (manager == null)  
  20.             return (null);      // Sessions are not supported  
  21.   
  22.         if (requestedSessionId != null) {  
  23.             try {  
  24.                 session = manager.findSession(requestedSessionId);//这里调用StandardManager的findSession方法查找是否存在Session对象  
  25.             } catch (IOException e) {  
  26.                 session = null;  
  27.             }  
  28.             if ((session != null) && !session.isValid())  
  29.                 session = null;  
  30.             if (session != null) {  
  31.                 return (session.getSession());  
  32.             }  
  33.         }  
  34.   
  35.         // Create a new session if requested and the response is not committed  
  36.         if (!create)  
  37.             return (null);  
  38.         if ((context != null) && (response != null) &&  
  39.             context.getCookies() &&  
  40.             response.getResponse().isCommitted()) {  
  41.             throw new IllegalStateException  
  42.               (sm.getString("httpRequestBase.createCommitted"));  
  43.         }  
  44.   
  45.         session = manager.createSession();//这里调用StandardManager的创建Session对象  
  46.         if (session != null)  
  47.             return (session.getSession());  
  48.         else  
  49.             return (null);  
  50. }       

        至此,Tomcat的Session管理的大部分东西也写的差不多了,这里没有写StandardManager和StandardSession两个类以及他们的实现接口,还有继承关系等,是因为觉得这篇文章已经够长了,而且他们跟跟其他标准组件也差不多,无非是实现的具体功能不一样,比如StandardSession还有过期处理等,不过它们也跟其他组件有各种关系,比如StandardManager就跟Context容器是关联的。有机会再细细的说Session管理器其他的东西(持久化和分布式)。
原文地址:https://www.cnblogs.com/chenying99/p/2798450.html