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);
}
}
...
推荐阅读
-
web服务器集群(多台web服务器)session同步、共享的3种解决方法
-
SpringBootSecurity学习(09)网页版登录配置Session共享
-
window.top[_CACHE]实现多个jsp页面共享一个js对象
-
SpringBoot开发案例之分布式集群共享Session
-
nginx+redis实现session共享
-
php实现session共享的实例方法
-
jsp编程中session的用法实例分析
-
Asp.net中处理一个站点不同Web应用共享Session的问题
-
Jsp中解决session过期跳转到登陆页面并跳出iframe框架的方法
-
PHP简单实现HTTP和HTTPS跨域共享session解决办法