SpringCache

SpringCache是一个框架,实现了基于注解的缓存功能。SpringCache提供了一层抽象,底层可以切换不同的cache实现。具体是通过CacheManager接口来统一不同的缓存技术.

CacheManager是Spring提供的各种缓存技术抽象接口.

针对不同的缓存技术需要实现不同的CacheManager:

CacheManmager 描述
EhCacheCacheManager 使用EhCache作为缓存技术
GuavaCacheManager 使用Google的GuavaCache作为缓存技术
RedisCacheManager 使用Redis作为缓存技术
...... ......
使用Map也可以实现缓存

SpringCache常用注解

注解 说明
@EnableCaching 开启缓存注解功能
@CachePut 在方法执行前Spring先查看缓存中是否有数据,如果有数据,则直接返回缓存数据; 如果没有数据,调用方法并将方法返回值放到缓存中
@CacheEvict 将一条或多条数据从缓存中删除

@SpringBoot项目中,使用缓存技术只需要在项目中导入相关缓存技术的依赖包,并在启动类上使用@EnableCaching开启缓存技术即可.

底层使用Map来实现缓存

首先导入相应的依赖

      <!-- 导入这个就可以使用 SpringCache的基础功能了,因为相关依赖也被导入了,
这里暂时使用 Map来实现缓存,如果使用 Redis还需要导入Redis相关的依赖
spring-boot-starter-cache 很多基本的API都在 spring-context 上下文依赖中.
-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<scope>compile</scope>
</dependency>

启动类上开启缓存注解

@Slf4j
@SpringBootApplication
@EnableCaching // 开启缓存 基础的 API都在 spring-context jar包中 上下文 jar包.
public class CacheDemoApplication {
public static void main(String[] args) {
SpringApplication.run(CacheDemoApplication.class,args);
log.info("项目启动成功...");
}
}

先看一下,此时提供的对CacheManager默认的实现



默认是提供了这五个实现



此案例使用的是 ConcurrentMapCacheManager



使用ConcurrentMap来实现缓存,也就是使用 Map 来实现缓存

controller层的练习案例

@RestController
@RequestMapping("/user")
@Slf4j
public class UserController { @Autowired
private CacheManager cacheManager; // 统一不同的缓存技术 默认用的是 ConcurrentMapManager,ConcurrentMap缓存数据 @Autowired
private UserService userService; /**
* CachePut 将方法的返回值放入缓存中
* 底层使用什么缓存产品,就看当前配置的缓存。这个案例中使用的最基础的环境,使用的是 Map来实现的缓存.
* value: 缓存的名称
* key: 缓存的 key 一般不写死,key的值应该是动态的. key支持 SpEL Spring表达式语言,可以动态地计算 key值. #表达式
* #result 代表方法的返回值
* #root 代表当前的方法 root.method root.methodName root.targetClass root.caches
* 获取方法参数 #user,user就是形参变量,注意名字要一样 #user.name #user.id
* 还可以这样获取参数,#root.args[index],下标从 0开始.
* 或者这样 #pindex p是固定写法,后面跟下标. #p1 #p0
* 每个缓存名称下面可以有多个 key
*
* 这个 Map是基于内存的,服务重启之后,缓存中的数据就没有了.
* @param user 用户对象
* @return 保存的用户对象数据
*/
@CachePut(value = "userCache", key = "#result.id") // 把插入的数据放到缓存中,需要指定 value,value 代表缓存的名称, key代表缓存的 key.
@PostMapping // value 是 一类缓存;具体这个分类下面可能会有多个缓存数据,多个缓存数据就需要根据 key来进行区分.
public User save(User user){
userService.save(user);
return user;
} /**
* CacheEvict 清理指定缓存
* value
* key
* 具体哪个缓存,由 value 和 key 来指定. 唯一锁定缓存数据.
* @param id
*/
// @CacheEvict(value = "userCache", key = "#p0")
// @CacheEvict(value = "userCache", key = "#root.args[0]")
@CacheEvict(value = "userCache", key = "#id") // 注意,这个名字要和参数名保持一致,这样可以获取参数变量
@DeleteMapping("/{id}")
public void delete(@PathVariable Long id){
userService.removeById(id);
} // @CacheEvict(value = "userCache", key = "#p0.id")
// @CacheEvict(value = "userCache", key = "#user.id")
// @CacheEvict(value = "userCache", key = "#root.args[0].id")
@CacheEvict(value = "userCache", key = "#result.id") // 从返回结果中获取.
@PutMapping
public User update(User user){
userService.updateById(user);
return user;
} /**
* Cacheable 若缓存中有数据,直接在缓存中拿; 如果没有,先从数据库中查出,然后再放入缓存中
* value
* key
* condition: 条件,满足条件时才会缓存数据
* unless: 满足这个条件时,不会缓存数据, 和 condition 相反.
* @param id id
* @return 查询结果
*/
@Cacheable(value = "userCache", key = "#id", condition = "#result != null") // 如果有缓存,则直接从缓存中拿数据. 没有的话先从数据库中取,然后再放入缓存.
@GetMapping("/{id}") // 查不存在的数据,返回为空,也会给缓存上. id 为 key,value 为 null 缓存
public User getById(@PathVariable Long id){ // 如何配置,value 不为空时才会缓存呢? 使用 condition属性或者 unless属性
User user = userService.getById(id);
return user;
} @Cacheable(value = "userCache", key = "#user.id + '_' + #user.name") // 不同的查询条件分别对应不同的缓存数据.
@GetMapping("/list")
public List<User> list(User user){
LambdaQueryWrapper<User> queryWrapper = new LambdaQueryWrapper<>();
queryWrapper.eq(user.getId() != null,User::getId,user.getId());
queryWrapper.eq(user.getName() != null,User::getName,user.getName());
List<User> list = userService.list(queryWrapper);
return list;
}
}

底层使用Redis来实现缓存技术

引入依赖

	<!-- SpringCache使用Redis实现缓存技术
spring-boot-starter-cache 扩展了一些对缓存技术的整合
-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
<!-- Redis的 cacheManager RedisCacheManager
在这个依赖中.
-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>

引入 spring-boot-starter-cache 后,看一下底层对 CacheManager 的实现扩展了哪些



这里扩展了很多实现,但是没有 Redis 的 cacheManager,那么需要再引入 spring-boot-starter-data-redis 依赖才可以,引入后再观察



可以看到有了关于 RedisCacheManager 的实现.

相关配置文件中的配置

spring:
# redis 配置
redis:
host: your ip
port: your port
password: your password
database: 0
# 设置缓存有效期
cache:
redis:
time-to-live: 1800000 #单位毫秒,30min

那么此时底层就换成了redis来实现缓存技术了,用法都是一样的

import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.itheima.entity.User;
import com.itheima.service.UserService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cache.CacheManager;
import org.springframework.cache.annotation.CacheEvict;
import org.springframework.cache.annotation.CachePut;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.web.bind.annotation.*;
import java.util.ArrayList;
import java.util.List; @RestController
@RequestMapping("/user")
@Slf4j
public class UserController { @Autowired
private CacheManager cacheManager; // 统一不同的缓存技术 默认用的是 ConcurrentMapManager,ConcurrentMap缓存数据 @Autowired
private UserService userService; /**
* CachePut 将方法的返回值放入缓存中
* 底层使用什么缓存产品,就看当前配置的缓存。这个案例中使用的最基础的环境,使用的是 Map来实现的缓存.
* value: 缓存的名称
* key: 缓存的 key 一般不写死,key的值应该是动态的. key支持 SpEL Spring表达式语言,可以动态地计算 key值. #表达式
* #result 代表方法的返回值
* #root 代表当前的方法 root.method root.methodName root.targetClass root.caches
* 获取方法参数 #user,user就是形参变量,注意名字要一样 #user.name #user.id
* 还可以这样获取参数,#root.args[index],下标从 0开始.
* 或者这样 #pindex p是固定写法,后面跟下标. #p1 #p0
* 每个缓存名称下面可以有多个 key
*
* 这个 Map是基于内存的,服务重启之后,缓存中的数据就没有了.
* @param user 用户对象
* @return 保存的用户对象数据
*/
@CachePut(value = "userCache", key = "#result.id") // 把插入的数据放到缓存中,需要指定 value,value 代表缓存的名称, key代表缓存的 key.
@PostMapping // value 是 一类缓存;具体这个分类下面可能会有多个缓存数据,多个缓存数据就需要根据 key来进行区分.
public User save(User user){
userService.save(user);
return user;
} /**
* CacheEvict 清理指定缓存
* value
* key
* 具体哪个缓存,由 value 和 key 来指定. 唯一锁定缓存数据.
* @param id
*/
// @CacheEvict(value = "userCache", key = "#p0")
// @CacheEvict(value = "userCache", key = "#root.args[0]")
@CacheEvict(value = "userCache", key = "#id") // 注意,这个名字要和参数名保持一致,这样可以获取参数变量
@DeleteMapping("/{id}")
public void delete(@PathVariable Long id){
userService.removeById(id);
} // @CacheEvict(value = "userCache", key = "#p0.id")
// @CacheEvict(value = "userCache", key = "#user.id")
// @CacheEvict(value = "userCache", key = "#root.args[0].id")
@CacheEvict(value = "userCache", key = "#result.id") // 从返回结果中获取.
@PutMapping
public User update(User user){
userService.updateById(user);
return user;
} /**
* Cacheable 若缓存中有数据,直接在缓存中拿; 如果没有,先从数据库中查出,然后再放入缓存中
* value
* key
* condition: 条件,满足条件时才会缓存数据
* unless: 满足这个条件时,不会缓存数据, 和 condition 相反.
* @param id id
* @return 查询结果
*/
// @Cacheable(value = "userCache", key = "#id", condition = "#result != null") // 如果有缓存,则直接从缓存中拿数据. 没有的话先从数据库中取,然后再放入缓存.
@Cacheable(value = "userCache", key = "#id", unless = "#result == null") // 换成了 redis,redis的 condition中是不能使用 result返回结果的.
@GetMapping("/{id}") // 查不存在的数据,返回为空,也会给缓存上. id 为 key,value 为 null 缓存
public User getById(@PathVariable Long id){ // 如何配置,value 不为空时才会缓存呢? 使用 condition属性或者 unless属性
User user = userService.getById(id);
return user;
} @Cacheable(value = "userCache", key = "#user.id + '_' + #user.name") // 不同的查询条件分别对应不同的缓存数据.
@GetMapping("/list")
public List<User> list(User user){
LambdaQueryWrapper<User> queryWrapper = new LambdaQueryWrapper<>();
queryWrapper.eq(user.getId() != null,User::getId,user.getId());
queryWrapper.eq(user.getName() != null,User::getName,user.getName());
List<User> list = userService.list(queryWrapper);
return list;
}
}

注意: Cacheable 的 condition属性,其 SpEL 是没有 result的



而 unless属性是可以使用 result 的

SpringCache的基本使用的更多相关文章

  1. SpringCache缓存初探

    body,table tr { background-color: #fff } table tr td,table tr th { border: 1px solid #ccc; text-alig ...

  2. SpringCache与redis集成,优雅的缓存解决方案

    缓存可以说是加速服务响应速度的一种非常有效并且简单的方式.在缓存领域,有很多知名的框架,如EhCache .Guava.HazelCast等.Redis作为key-value型数据库,由于他的这一特性 ...

  3. SpringCache @Cacheable 在同一个类中调用方法,导致缓存不生效的问题及解决办法

    由于项目需要使用SpringCache来做一点缓存,但自己之前没有使用过(其实是没有听过)SpringCache,于是,必须先学习之. 在网上找到一篇文章,比较好,就先学习了,地址是: https:/ ...

  4. SpringCache学习之操作redis

    一.redis快速入门 1.redis简介 在java领域,常见的四大缓存分别是ehcache,memcached,redis,guava-cache,其中redis与其他类型缓存相比,有着得天独厚的 ...

  5. SpringBoot基础系列-SpringCache使用

    原创文章,转载请标注出处:<SpringBoot基础系列-SpringCache使用> 一.概述 SpringCache本身是一个缓存体系的抽象实现,并没有具体的缓存能力,要使用Sprin ...

  6. spring-boot的spring-cache中的扩展redis缓存的ttl和key名

    原文地址:spring-boot的spring-cache中的扩展redis缓存的ttl和key名 前提 spring-cache大家都用过,其中使用redis-cache大家也用过,至于如何使用怎么 ...

  7. SpringCache实战遇坑

    1. SpringCache实战遇坑 1.1. pom 主要是以下两个 <dependency> <groupId>org.springframework.boot</g ...

  8. SpringCache学习实践

    1. SpringCache学习实践 1.1. 引用 <dependency> <groupId>org.springframework.boot</groupId> ...

  9. SpringBoot2.X + SpringCache + redis解决乱码问题

    环境:SpringBoot2.X + SpringCache + Redis Spring boot默认使用的是SimpleCacheConfiguration,使用ConcurrentMapCach ...

  10. AOP方法增强自身内部方法调用无效 SpringCache 例子

    开启注解@EnableCaChing,配置CacheManager,结合注解@Cacheable,@CacheEvit,@CachePut对数据进行缓存操作 缺点:内部调用,非Public方法上使用注 ...

随机推荐

  1. LVGL库入门教程03-布局方式

    LVGL布局方式 LVGL的布局 上一节介绍了如何在 LVGL 中创建控件.如果在创建控件时不给控件安排布局,那么控件默认会被放在父容器的左上角. 可以使用 lv_obj_set_pos(obj, x ...

  2. Typora图片与阿里云OSS图床的结合之旅

    图床? 专门用于存放图片,并允许用户通过独一的外链进行特定图片资源的访问 为什么是阿里云OSS(Object Storage Service) 码云开源需要审核,已经不能作为免费的图床使用(2022年 ...

  3. SAP JSON 格式化及解析。

    一.首选:/ui2/cl_json     {'key':'value'} /ui2/cl_json=>deserialize( EXPORTING json = json CHANGING d ...

  4. nginx源码层面探究request_time、upstream_response_time、upstream_connect_time与upstream_header_time指标具体含义

    背景概述 最近计划着重分析一下线上各api的HTTP响应耗时情况,检查是否有接口平均耗时.99分位耗时等相关指标过大的情况,了解到nginx统计请求耗时有四个指标:request_time.upstr ...

  5. 『现学现忘』Git后悔药 — 29、版本回退git reset --mixed命令说明

    git reset --mixed commit-id命令:回退到指定版本.(mixed:混合的,即:中等回退.) 该命令不仅修改了分支中HEAD指针的位置,还将暂存区中数据也回退到了指定版本. 但是 ...

  6. File类获取功能的方法和File类判断功能的方法

    File类获取功能的方法-public String getAbsolutePath() :返回此file的绝对路径名字符串 -public String getPath() :将此File转换为路径 ...

  7. 如何用天气预警API接口进行快速开发

    天气预警能够指导人们出行.同一种类的气象灾害预警信号级别不同,对应的防御措施也不尽相同,人们通过气象灾害预警信号,合理安排出行.公众要提高防范意识,养成接收和关注预警信息的习惯,了解预警信息背后的意义 ...

  8. Kafka Topic Partition Offset 这一长串都是啥?

    摘要:Offset 偏移量,是针对于单个partition存在的概念. 本文分享自华为云社区<Kafka Topic Partition Offset 这一长串都是啥?>,作者: gent ...

  9. Solution -「校内题」Xorequ

    0x00 前置芝士 数位dp考试里出现的小神题?? 显然考场会选择打表找规律. 数位dp + 矩阵快速幂 0x01 题目描述 给定正整数 \(n\),现有如下方程 \(x \bigoplus 3x = ...

  10. CD 从抓轨到搭建流媒体服务器 —— 以《月临寐乡》为例

    2022-07-19 v0.0.1 由于某些原因,进了 Static World 的群并入坑了 月临寐乡 ,梦开始了.作为幻想乡的新人,也算是有了自己喜欢的社团.但是更细节的东西,狐狐脑子一下子塞不下 ...