现象:
多个系统部署同一台服务器,如果有用到cookie-session,会出现cookie冲突情况,导致先登入的系统被后登入的系统自动覆盖cookie的jsessionid,而导致session失效。
解决方法:
手动设置jsessionid的name
具体措施:
[默认系统基于springboot开发]直接给系统添加如下配置类,无需其他操作,上述问题即解决:
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.web.servlet.ServletContextInitializer;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
/**
* 配置应用的cookied名称,避免同域名(即使不同端口)cookie占用冲突
* @author 魏霖涛
* @date 2018/11/28 17:33
*/
@Configuration
public class CookieConfig {
/**
* 在配置文件配置APP.NAME参数即可
*/
@Value("${APP.NAME}")
private String appName;
@Bean
public ServletContextInitializer servletContextInitializer() {
return new ServletContextInitializer() {
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
servletContext.getSessionCookieConfig().setName(appName);
}
};
}
}