jsp 二级域名共享session

  1. protected void configureSessionCookie(Cookie cookie) {  
  2.         cookie.setMaxAge(-1);  
  3.         String contextPath = null;  
  4.         if (!connector.getEmptySessionPath() && (getContext() != null)) {  
  5.             contextPath = getContext().getEncodedPath();  
  6.         }  
  7.         if ((contextPath != null) && (contextPath.length() > 0)) {  
  8.             cookie.setPath(contextPath);  
  9.         } else {  
  10.             cookie.setPath("/");  
  11.         }  
  12.           
  13.         <span style="color: #ff0000;">cookie.setDomain("xxx.com");</span>  
  14.           
  15.         if (isSecure()) {  
  16.             cookie.setSecure(true);  
  17.         }  
  18.     }  
  19.   
  20. ...  

你可能感兴趣的:(jsp 二级域名共享session)