springboot2.0.2+redis+spring-session 解决session共享的问题

787f460c1cb300dc12fdc0df3c1dadc8.jpg

准备工作

新建两个springboot2.0.2版本的服务,配置文件添加:

#在默认设置下,Eureka服务注册中心也会将自己作为客户端来尝试注册它自己,所以我们需要禁用它的客户端注册行为
eureka.client.register-with-eureka=false
eureka.client.fetch-registry=false

配置文件需要添加以上两项配置,不然会报以下错误:

com.netflix.discovery.shared.transport.TransportException: Cannot execute request on any known server

集成redis

添加Maven依赖:



    org.springframework.boot
    spring-boot-starter-data-redis



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



    redis.clients
    jedis
    2.9.0

必须添加第三个依赖,不然会报以下错误:

Caused by: java.lang.NoClassDefFoundError: redis/clients/jedis/Tuple

添加redis配置信息:

# REDIS (RedisProperties)
# Redis数据库索引(默认为0)
spring.redis.database=0
# Redis服务器地址
spring.redis.host=localhost
# Redis服务器连接端口
spring.redis.port=6379
# Redis服务器连接密码(默认为空)
spring.redis.password=
# 连接池最大连接数(使用负值表示没有限制)
spring.redis.jedis.pool.max-active=8
# 连接池最大阻塞等待时间(使用负值表示没有限制)
spring.redis.jedis.pool.max-wait=-1
# 连接池中的最大空闲连接
spring.redis.jedis.pool.max-idle=8
# 连接池中的最小空闲连接
spring.redis.jedis.pool.min-idle=0
# 连接超时时间(毫秒)
spring.redis.timeout=500

**注:关于springboot各个版本的redis集成,参考springboot中各个版本的redis配置问题

新建sessionConfig类

//这个类用配置redis服务器的连接
//maxInactiveIntervalInSeconds为SpringSession的过期时间(单位:秒)
@EnableRedisHttpSession(maxInactiveIntervalInSeconds= 1800)
public class SessionConfig {

    //冒号后的值为没有配置文件时,制动装载的默认值
    @Value("${spring.redis.host:localhost}")
    String HostName;
    @Value("${spring.redis.port:6379}")
    int Port;
    @Bean
    public JedisConnectionFactory connectionFactory() {
        JedisConnectionFactory connection = new JedisConnectionFactory();
        connection.setPort(Port);
        connection.setHostName(HostName);
        return connection;
    }
}

test主类中添加测试接口(端口号:8763):

@SpringBootApplication
@EnableEurekaClient
@RestController
public class ServerTestApplication {

   public static void main(String[] args) {
       SpringApplication.run(ServerTestApplication.class, args);
   }

   @RequestMapping(value="/",method = RequestMethod.GET)
   public String setSession(HttpServletRequest request){
       Map map = new HashMap();
       map.put("name","超级管理员");
       map.put("account","admin");
       request.getSession().setAttribute("userSession",map);
       String sessionId = request.getSession().getId();
       return sessionId;
   }
}

返回结果:

4c0fe3e3-87cc-4991-acae-8bca2645705a

test1主类中添加测试(端口号:8764)

@SpringBootApplication
@EnableEurekaClient
@RestController
public class ServerTest1Application {

   public static void main(String[] args) {
       SpringApplication.run(ServerTest1Application.class, args);
   }

   @RequestMapping(value="/",method = RequestMethod.GET)
   public Map getSession(HttpServletRequest request){
       String sessionId = request.getSession().getId();
       Object obj = request.getSession().getAttribute("userSession");
       Map map = new HashMap();
       map.put("sessionId",sessionId);
       map.put("user",obj);
       return map;
   }
}

返回结果:


  4c0fe3e3-87cc-4991-acae-8bca2645705a
  
    超级管理员
    admin
  

从以上结果可以看出,访问8763端口服务的sessionId信息和访问8764端口服务的sessionId信息一致

你可能感兴趣的:(springboot2.0.2+redis+spring-session 解决session共享的问题)