精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

tomcat共享多個web應用會話的實現方法

tomcat共享多個web應用會話的實現方法

問題

今天有位朋友問了個問題,大致是:tomcat下兩個java web,一個是商城,一個是直播,從商城登錄后,再跳轉到直播,發現處于非登錄狀態。

解決思路

  • 將session抽出來成一個session服務,統一通過該服務操作session。
  • tomcat內部用會話管理器獲取會話時遍歷所有context內的會話。
  • 方案1

    重寫獲取session方法即可。

    方案2

    找了源碼發現已經支持類似遍歷所有context內的會話的形式,首先獲取session時,如果cresscontext屬性為true,則會在獲取不到時嘗試遍歷所有context是否存在該sessionid,如果存在則在本context根據sessionid創建自己的session對象。

     public httpsession getsession(boolean create) {
    
        if (crosscontext) {
    
          // there cannot be a session if no context has been assigned yet
          if (context == null)
            return (null);
    
          // return the current session if it exists and is valid
          if (session != null && session.isvalid()) {
            return (session.getsession());
          }
    
          httpsession other = super.getsession(false);
          if (create && (other == null)) {
            // first create a session in the first context: the problem is
            // that the top level request is the only one which can 
            // create the cookie safely
            other = super.getsession(true);
          }
          if (other != null) {
            session localsession = null;
            try {
              localsession =
                context.getmanager().findsession(other.getid());
              if (localsession != null && !localsession.isvalid()) {
                localsession = null;
              }
            } catch (ioexception e) {
              // ignore
            }
            if (localsession == null && create) {
              localsession = 
                context.getmanager().createsession(other.getid());
            }
            if (localsession != null) {
              localsession.access();
              session = localsession;
              return session.getsession();
            }
          }
          return null;
    
        } else {
          return super.getsession(create);
        }
    
      }
    
    

    context(web應用)獲取跨應用session時通過類似下面操作獲取:

    request.getsession().getservletcontext().getcontext("/app2").getattribute("att2"); 

    這是因為request會根據cookies的sessionid獲取到session對象,這時不會報找不到,因為前面已經根據其他sessionid創建了一個session對象,然后getcontext操作會獲取對應url的context,接著進行會話操作。

    public servletcontext getcontext(string uri) {
    
        // validate the format of the specified argument
        if (uri == null || !uri.startswith("/")) {
          return null;
        }
    
        context child = null;
        try {
          // look for an exact match
          container host = context.getparent();
          child = (context) host.findchild(uri);
    
          // non-running contexts should be ignored.
          if (child != null && !child.getstate().isavailable()) {
            child = null;
          }
    
          // remove any version information and use the mapper
          if (child == null) {
            int i = uri.indexof("##");
            if (i > -1) {
              uri = uri.substring(0, i);
            }
            // note: this could be more efficient with a dedicated mapper
            //    method but such an implementation would require some
            //    refactoring of the mapper to avoid copy/paste of
            //    existing code.
            messagebytes hostmb = messagebytes.newinstance();
            hostmb.setstring(host.getname());
    
            messagebytes pathmb = messagebytes.newinstance();
            pathmb.setstring(uri);
    
            mappingdata mappingdata = new mappingdata();
            ((engine) host.getparent()).getservice().findconnectors()[0].getmapper().map(
                hostmb, pathmb, null, mappingdata);
            child = (context) mappingdata.context;
          }
        } catch (throwable t) {
          exceptionutils.handlethrowable(t);
          return null;
        }
    
        if (child == null) {
          return null;
        }
    
        if (context.getcrosscontext()) {
          // if crosscontext is enabled, can always return the context
          return child.getservletcontext();
        } else if (child == context) {
          // can still return the current context
          return context.getservletcontext();
        } else {
          // nothing to return
          return null;
        }
      }
    
    

    如有疑問請留言或者到本站社區交流討論,感謝閱讀,希望能幫助到大家,謝謝大家都對本站的支持!

    相關文章