SpringBoot配置Redis实现session共享

1.引入依赖


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



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

 

2.配置Redis的连接

spring.redis.database=0
spring.redis.host=127.0.0.1
spring.redis.port=6379
spring.redis.password=
spring.redis.pool.max-active=8
spring.redis.pool.max-wait=-1
spring.redis.pool.max-idle=8
spring.redis.pool.min-idle=0
spring.redis.timeout=0

3.在启动类上加上注解

@EnableRedisHttpSession

你可能感兴趣的:(JAVA,Springboot,Redis)