黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

tomcat共享多個(gè)web應(yīng)用會(huì)話的實(shí)現(xiàn)方法

tomcat共享多個(gè)web應(yīng)用會(huì)話的實(shí)現(xiàn)方法

問(wèn)題

今天有位朋友問(wèn)了個(gè)問(wèn)題,大致是:tomcat下兩個(gè)java web,一個(gè)是商城,一個(gè)是直播,從商城登錄后,再跳轉(zhuǎn)到直播,發(fā)現(xiàn)處于非登錄狀態(tài)。

解決思路

  • 將session抽出來(lái)成一個(gè)session服務(wù),統(tǒng)一通過(guò)該服務(wù)操作session。
  • tomcat內(nèi)部用會(huì)話管理器獲取會(huì)話時(shí)遍歷所有context內(nèi)的會(huì)話。
  • 方案1

    重寫(xiě)獲取session方法即可。

    方案2

    找了源碼發(fā)現(xiàn)已經(jīng)支持類似遍歷所有context內(nèi)的會(huì)話的形式,首先獲取session時(shí),如果cresscontext屬性為true,則會(huì)在獲取不到時(shí)嘗試遍歷所有context是否存在該sessionid,如果存在則在本context根據(jù)sessionid創(chuàng)建自己的session對(duì)象。

     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應(yīng)用)獲取跨應(yīng)用session時(shí)通過(guò)類似下面操作獲?。?/p>

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

    這是因?yàn)閞equest會(huì)根據(jù)cookies的sessionid獲取到session對(duì)象,這時(shí)不會(huì)報(bào)找不到,因?yàn)榍懊嬉呀?jīng)根據(jù)其他sessionid創(chuàng)建了一個(gè)session對(duì)象,然后getcontext操作會(huì)獲取對(duì)應(yīng)url的context,接著進(jìn)行會(huì)話操作。

    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;
        }
      }
    
    

    如有疑問(wèn)請(qǐng)留言或者到本站社區(qū)交流討論,感謝閱讀,希望能幫助到大家,謝謝大家都對(duì)本站的支持!

    相關(guān)文章