jsp 二级域名共享session
程序员文章站
2022-04-15 13:01:46
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);
}
}
...
推荐阅读
-
Asp.net中处理一个站点不同Web应用共享Session的问题
-
Springboot实现多服务器session共享
-
Jsp中解决session过期跳转到登陆页面并跳出iframe框架的方法
-
PHP简单实现HTTP和HTTPS跨域共享session解决办法
-
JSP session配置对web应用的影响
-
利用JSP session对象保持住登录状态
-
spring boot整合redis实现shiro的分布式session共享的方法
-
SpringBoot2.x+Redis+nginx实现session共享和负载均衡
-
Nginx*享session会话配置方法例子
-
jsp中session过期设置及web.xml配置学习