tomcat共享多個web應(yīng)用會話的實現(xiàn)方法
tomcat共享多個web應(yīng)用會話的實現(xiàn)方法
問題
今天有位朋友問了個問題,大致是:tomcat下兩個Java web,一個是商城,一個是直播,從商城登錄后,再跳轉(zhuǎn)到直播,發(fā)現(xiàn)處于非登錄狀態(tài)。
解決思路
- 將session抽出來成一個session服務(wù),統(tǒng)一通過該服務(wù)操作session。
- tomcat內(nèi)部用會話管理器獲取會話時遍歷所有context內(nèi)的會話。
方案1
重寫獲取session方法即可。
方案2
找了源碼發(fā)現(xiàn)已經(jīng)支持類似遍歷所有context內(nèi)的會話的形式,首先獲取session時,如果cressContext屬性為true,則會在獲取不到時嘗試遍歷所有context是否存在該sessionid,如果存在則在本context根據(jù)sessionid創(chuàng)建自己的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應(yīng)用)獲取跨應(yīng)用session時通過類似下面操作獲?。?/p>
request.getSession().getServletContext().getContext("/app2").getAttribute("att2");
這是因為request會根據(jù)cookies的sessionid獲取到session對象,這時不會報找不到,因為前面已經(jīng)根據(jù)其他sessionid創(chuàng)建了一個session對象,然后getContext操作會獲取對應(yīng)url的context,接著進(jìn)行會話操作。
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;
}
}
如有疑問請留言或者到本站社區(qū)交流討論,感謝閱讀,希望能幫助到大家,謝謝大家都對本站的支持!
相關(guān)文章
關(guān)于request.getHeader("Referer")的問題探討
request.getHeader("Referer")獲取上次訪問的URL鏈接,在什么情況下他會出現(xiàn)問題,下面為大家分享下,感興趣的朋友不要錯過2013-10-10
jsp 判斷l(xiāng)ist是否包含string的實現(xiàn)方法
下面小編就為大家?guī)硪黄猨sp 判斷l(xiāng)ist是否包含string的實現(xiàn)方法。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2016-10-10
AJAX 自學(xué)練習(xí) 無刷新提交并修改數(shù)據(jù)庫數(shù)據(jù)并顯示
對應(yīng)在數(shù)據(jù)庫中表格 rocars表的msg_id,ccrn兩個字段?,F(xiàn)在要實現(xiàn)在界面上修改ccrn的值,ajax提交到response.jsp頁面,并調(diào)用RocarsEntiy.updateCcrn方法更新對應(yīng)的ccrn,最后無刷新顯示2009-09-09
基于javaweb+jsp實現(xiàn)企業(yè)財務(wù)記賬管理系統(tǒng)
這篇文章主要介紹了基于javaweb+jsp實現(xiàn)的企業(yè)財務(wù)記賬管理系統(tǒng),文中的示例代碼對我們學(xué)習(xí)jsp編程有一定的幫助,感興趣的小伙伴可以跟隨小編一起學(xué)習(xí)一下2021-12-12

