欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jsp 二级域名共享session

程序员文章站 2022-08-11 12:07:22
protected void configureSessionCookie(Cookie cookie) {          ...
protected void configureSessionCookie(Cookie cookie) {  

        cookie.setMaxAge(-1);  

        String contextPath = null;  

        if (!connector.getEmptySessionPath() && (getContext() != null)) {  

            contextPath = getContext().getEncodedPath();  

        }  www.2cto.com

        if ((contextPath != null) && (contextPath.length() > 0)) {  

            cookie.setPath(contextPath);  

        } else {  

            cookie.setPath("/");  

        }  

          

        <span style="color: #ff0000;">cookie.setDomain("xxx.com");</span>  

          

        if (isSecure()) {  

            cookie.setSecure(true);  

        }  

    }  

  

...