Spring Boot 会话管理

前情提要:本来项目用shiro可以用来作为会话管理,要配不少东西,且不一定有结果。并且用shiro会话管理会和devtools(热部署包)冲突,需要剔除该包。此处不使用shiro进行会话管理,而是使用Spring Session+Redis实现Session共享。

1.添加依赖


            org.springframework.session
            spring-session-data-redis
           

2.添加类

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.session.data.redis.config.ConfigureRedisAction;
import org.springframework.session.data.redis.config.annotation.web.http.EnableRedisHttpSession;

/**
 * session会话管理
 * @date 2018/9/5
 */
@Configuration
@EnableRedisHttpSession
public class RedisSessionConfig {

    @Bean
    public static ConfigureRedisAction configureRedisAction() {
        // 让Spring Session不再执行config命令
        return ConfigureRedisAction.NO_OP;
    }

}

3.配置Nginx测试(其实Nginx就能管理Session)

# nginx.conf

.......
upstream testsite.com {
    server 192.168.0.118:8180;
    server 10.0.0.152:8180;
}

........

location /tms {
    proxy_pass http://testsite.com;
    proxy_redirect default;
}

# 我拜读过下面几位博主的文章,刚刚会配置上面这个,需要了解一下一些配置如:proxy_pass

#  https://www.cnblogs.com/eggplantpro/p/7445795.html

#  https://www.jb51.net/article/128636.htm

#  http://www.nginx.cn/doc/example/loadbanlance.html

# https://www.cnblogs.com/kevingrace/p/6566119.html

测试方法很简单就是不停刷新页面,192.168.0.118是测试环境和10.0.0.152:8180本地环境公用数据库和redis。我在本地打断点或者打印输出即可分辨服务器,结果是都能正常登录。

4.问题

如果公用的redis是供应商提供的云服服务会出现一些问题,RedisSessionConfig.java中的红色部分解决了该问题。具体问题及解决方法参考以下两位博主的文章:

https://www.jianshu.com/p/0505e6612303

https://blog.csdn.net/xiao__gui/article/details/52706243

 

你可能感兴趣的:(Spring,Boot)