gradle 添加依赖
compile("org.springframework.session:spring-session:1.3.0.RELEASE")
compile("org.springframework.boot:spring-boot-starter-data-redis:${springBootVersion}")
application.properties 配置redis信息
# REDIS (RedisProperties)
spring.redis.database= 1
spring.redis.host=localhost
#spring.redis.password=
spring.redis.port=6379
spring.redis.pool.max-idle=8
spring.redis.pool.min-idle=0
spring.redis.pool.max-active=8
spring.redis.pool.max-wait=-1
#spring.redis.sentinel.master=
#spring.redis.sentinel.nodes=
指定session 缓存方式
#指定默认session缓存方式,redis
spring.session.store-type=redis
用RedisDesktopManager 查看redis缓存的session信息
搞定