一、依赖
如果 Spring boot 版本是1.4+,则建议引用如下的 spring-boot-starter-data-redis,而不要引用 spring-boot-starter-redis,至于为什么,看下面的图片就明白了。
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> <dependency> <groupId>org.springframework.session</groupId> <artifactId>spring-session-data-redis</artifactId> </dependency>
二、配置
1、properties 文件配置
############ redis ########### pring.redis.host=localhost spring.redis.port=6379 spring.redis.password=password
2、配置类
@Configuration @EnableRedisHttpSession(maxInactiveIntervalInSeconds = 30*60, redisNamespace="myNameSpace") // 设置redis中session有效期为30分钟(其实默认是30分钟),名称空间是“myNameSpace” public class RedisSessionConfig { }
文章评论