目录
1. redis集成
2. pom.xml加入redis缓存支持
3. 在项目配置文件中加入cache配置
4. 在启动类开发缓存功能
5. 需要缓存的实体对象实现序列化接口
6. 缓存的使用
7. 测试
今天与大家分享,redis二级缓存实现案例。如有问题,望指教。
1. redis集成
使用redis做spring的二级缓存,首先完成redis的集成,参见springboot的常用组件集成。
2. pom.xml加入redis缓存支持
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
3. 在项目配置文件中加入cache配置
application.properties(可以是application.yml)
# -------------------- cache config B -------------------------
spring.cache.cache-names=redisCache
spring.cache.type=redis
# -------------------- cache config E -------------------------
4. 在启动类开发缓存功能
5. 需要缓存的实体对象实现序列化接口
将光标定义到类名,按alt+ enter,出现如下快捷菜单
6. 缓存的使用
7. 测试
查询缓存: