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ì)本站的支持!
上一篇:JSP學(xué)生信息管理系統(tǒng)設(shè)計(jì)
欄 目:JSP編程
下一篇:Jsp+Servlet實(shí)現(xiàn)文件上傳下載 文件上傳(一)
本文標(biāo)題:tomcat共享多個(gè)web應(yīng)用會(huì)話的實(shí)現(xiàn)方法
本文地址:http://mengdiqiu.com.cn/a1/JSPbiancheng/11435.html
您可能感興趣的文章


閱讀排行
- 1C語(yǔ)言 while語(yǔ)句的用法詳解
- 2java 實(shí)現(xiàn)簡(jiǎn)單圣誕樹(shù)的示例代碼(圣誕
- 3利用C語(yǔ)言實(shí)現(xiàn)“百馬百擔(dān)”問(wèn)題方法
- 4C語(yǔ)言中計(jì)算正弦的相關(guān)函數(shù)總結(jié)
- 5c語(yǔ)言計(jì)算三角形面積代碼
- 6什么是 WSH(腳本宿主)的詳細(xì)解釋
- 7C++ 中隨機(jī)函數(shù)random函數(shù)的使用方法
- 8正則表達(dá)式匹配各種特殊字符
- 9C語(yǔ)言十進(jìn)制轉(zhuǎn)二進(jìn)制代碼實(shí)例
- 10C語(yǔ)言查找數(shù)組里數(shù)字重復(fù)次數(shù)的方法
本欄相關(guān)
- 01-11web下載文件和跳轉(zhuǎn)的方法
- 01-11Spring注入Date類型的三種方法總結(jié)
- 01-11在JSP中使用formatNumber控制要顯示的小
- 01-11Properties 持久的屬性集的實(shí)例詳解
- 01-11EJB3.0部署消息驅(qū)動(dòng)Bean拋javax.naming.Na
- 01-11jsp文件下載功能實(shí)現(xiàn)代碼
- 01-11JSP頁(yè)面跳轉(zhuǎn)方法大全
- 01-11詳解Spring的核心機(jī)制依賴注入
- 01-11jsp 使用request為頁(yè)面添加靜態(tài)數(shù)據(jù)的實(shí)
- 01-11Spring獲取ApplicationContext對(duì)象工具類的
隨機(jī)閱讀
- 01-11Mac OSX 打開(kāi)原生自帶讀寫(xiě)NTFS功能(圖文
- 01-10delphi制作wav文件的方法
- 01-10SublimeText編譯C開(kāi)發(fā)環(huán)境設(shè)置
- 01-10使用C語(yǔ)言求解撲克牌的順子及n個(gè)骰子
- 01-11ajax實(shí)現(xiàn)頁(yè)面的局部加載
- 04-02jquery與jsp,用jquery
- 01-10C#中split用法實(shí)例總結(jié)
- 08-05DEDE織夢(mèng)data目錄下的sessions文件夾有什
- 08-05織夢(mèng)dedecms什么時(shí)候用欄目交叉功能?
- 08-05dedecms(織夢(mèng))副欄目數(shù)量限制代碼修改