springboot 2.5.1 使用Redis作为缓存
我用的是 springboot 2.5.1
- 在 https://start.spring.io/ 官方添加这两个依赖
或者
直接在pom.xml文件添加依赖
<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>
- 写配置文件
spring:
redis:
host: localhost
password: 123456
session:
store-type: redis
timeout: 1800 #30分钟 30x60
好,大功告成。
同时 redis 缓存也可以拿来自己用
@Autowired
private StringRedisTemplate redisTemplete;