SpringBoot 缓存
一:Spring缓存抽象
Spring从3.1开始定义了org.springframework.cache.Cache和org.springframework.cache.CacheManager接口来统一不同的缓存技术;并支持使用JCache(JSR-107)注解简化我们开发;
Cache接口为缓存的组件规范定义,包含缓存的各种操作集合;
Cache接口下Spring提供了各种xxxCache的实现;如RedisCache,EhCacheCache ,ConcurrentMapCache等;
每次调用需要缓存功能的方法时,Spring会检查检查指定参数的指定的目标方法是否已经被调用过;如果有就直接从缓存中获取方法调用后的结果,如果没有就调用方法并缓存结果后返回给用户。下次调用直接从缓存中获取。
使用Spring缓存抽象时我们需要关注以下两点;
1、确定方法需要被缓存以及他们的缓存策略
2、从缓存中读取之前缓存存储的数据
二:几个重要概念&缓存注解
名称解释
Cache缓存接口,定义缓存操作。实现有:RedisCache、EhCacheCache、
ConcurrentMapCache等
CacheManager缓存管理器,管理各种缓存(cache)组件
@Cacheable主要针对方法配置,能够根据方法的请求参数对其进行缓存
@CacheEvict清空缓存
@CachePut保证方法被调用,又希望结果被缓存。
与@Cacheable区别在于是否每次都调用方法,常用于更新
@EnableCaching开启基于注解的缓存
keyGenerator缓存数据时key生成策略
serialize缓存数据时value序列化策略
@CacheConfig统一配置本类的缓存注解的属性
spring怎么读取yaml@Cacheable/@CachePut/@CacheEvict 主要的参数
三:SpEL 上下文数据
Spring Cache 提供了一些供我们使用的SpEL 上下文数据,下表直接摘自Spring 官方文档:
名称解释
value
缓存的名称,在 spring 配置文件中定义,必须指定至少一个 例如:
@Cacheable(value=”mycache ”) 或者 @Cacheable(value={”cache1”,”cache2”}
key 缓存的 key,可以为空,如果指定要按照 SpEL 表达式编写, 如果不指定,则缺省按照方法的所有参数进行组合 例如:
@Cacheable(value=”testcache ”,key=”#id ”)
condition 缓存的条件,可以为空,使用 SpEL 编写,返回 true 或者 false, 只有为 true 才进行缓存/清除缓存
例如:@Cacheable(value=”testcache ”,condition=”#userName.length()>2”)
unless 否定缓存。当条件结果为TRUE 时,就不会缓存。
@Cacheable(value=”testcache ”,unless=”#userName.length()>2”)
allEntries (@CacheEvict )
是否清空所有缓存内容,缺省为 false,如果指定为 true, 则方法调用后将立即清空所有缓存 例如:
@CachEvict(value=”testcache ”,allEntries=true)
beforeInvocation (@CacheEvict)
是否在方法执行前就清空,缺省为 false,如果指定为 true, 则在方法还没有执行的时候就清空缓存,缺省情况下,如果方法 执行抛出异常,则不会清空缓存 例如:
@CachEvict(value=”testcache ”,beforeInvocation=true)
注意:
1.当我们要使用root 对象的属性作为key 时我们也可以将“#root ”省略,因为Spring 默认使用的就是root 对象的属性。 如
@Cacheable(key = "targetClass + methodName +#p0")
2.使用方法参数时我们可以直接使用“#参数名”或者“#p 参数index ”。 如:
@Cacheable(value="users", key="#id")@Cacheable(value="users", key="#p0")
SpEL 提供了多种运算符四:开始使用
1.开始使用前需要导入依赖
XML
名称
位置描述
示例
methodName root 对象当前被调用的方法名#hodname method root 对象当前被调用的方法
#hod.name target root 对象当前被调用的目标对象实例#root.target targetClass root 对象当前被调用的目标对象的类#root.targetClass args root 对象当前被调用的方法的参数列表#root.args[0]caches
root 对象
当前方法调用使用的缓存列表
#root.caches[0].nam e
Argument Name 执行上下文当前被调用的方法的参数,如findArtisan(Artisan artisan),可以通过#artsian.id 获得参数
#artsian.id
result 执行上下文方法执行后的返回值(仅当方法执行后的判断有效,如 unless cacheEvict 的
beforeInvocation=false)
#result
类型运算符
关系<,>,<=,>=,==,!=,lt,gt,le,ge,eq,ne 算术+,- ,* ,/,%,^
逻辑&&,|,!,and,or,not,between,instanceof 条件?: (ternary),?: (elvis)正则表达式matches
其他类型
?.,?[…],![…],^[…],$[…]
XML
<dependency>
</dependency>
2.然后在启动类注解@EnableCaching 开启缓存
Java
3.缓存@Cacheable
@Cacheable 注解会先查询是否已经有缓存,有会使用缓存,没有则会执行方法并缓存。
Java
此处的value 是必需的,它指定了你的缓存存放在哪块命名空间。
此处的key 是使用的spEL 表达式,参考上章。这里有一个小坑,如果你把methodName 换成method 运行会报错,观察它们的返回类型,原因在于methodName 是String 而methoh 是Method 。
此处的User 实体类一定要实现序列化public class User implements Serializable ,否则会报
java.io.NotSerializableException 异常。
到这里,你已经可以运行程序检验缓存功能是否实现。
我们打开@Cacheable 注解的源码,可以看到该注解提供的其他属性,如:
String[] cacheNames() default {}; //和value 注解差不多,二选一
String keyGenerator() default ""; //key 的生成器。key/keyGenerator 二选一使用String cacheManager() default ""; //指定缓存管理器String cacheResolver() default ""; //或者指定获取解析器String condition() default ""; //条件符合则缓存String unless() default ""; //条件符合则不缓存boolean sync() default false; //是否使用异步模式4.配置@CacheConfig
当我们需要缓存的地方越来越多,你可以使用@CacheConfig(cacheNames = {"myCache"})注解来统一指定value 的值,这时可省略value ,如果你在你的方法依旧写上了value ,那么依然以方法的value 值为准。
Java
<dependency >
<groupId >org.springframework.boot </groupId >
<artifactId >spring-boot-starter-cache </artifactId > </dependency >
<groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-cache</artifactId>@SpringBootApplication @EnableCaching //开启缓存 public class DemoApplication {
public static void main (String [] args ) {
SpringApplication .run (DemoApplication .class , args ); } }
@Cacheable(value = "emp" ,key = "targetClass + methodName +#p0") public List <NewJob > queryAll (User uid ) { return newJobDao .findAllByUid (uid ); }
@CacheConfig(cacheNames = {"myCache"})
public class BotRelationServiceImpl implements BotRelationService { @Override
@Cacheable(key = "targetClass + methodName +#p0")//此处没写value
String keyGenerator() default ""; //key 的生成器。key/keyGenerator 二选一使用String cacheManager() default ""; //指定缓存管理器String cacheResolver() default ""; //或者指定获取解析器5.更新@CachePut
@CachePut 注解的作用 主要针对方法配置,能够根据方法的请求参数对其结果进行缓存,和 @Cacheable 不同的是,它每次都会触
发真实方法的调用 。简单来说就是用户更新缓存数据。但需要注意的是该注解的value 和 key 必须与要更新的缓存相同,也就是与@Cacheable 相同。
Java
String[] cacheNames() default {}; //与value 二选一
String keyGenerator() default ""; //key 的生成器。key/keyGenerator 二选一使用String cacheManager() default ""; //指定缓存管理器String cacheResolver() default ""; //或者指定获取解析器String condition() default ""; //条件符合则缓存String unless() default ""; //条件符合则不缓存6.清除@CacheEvict
@CachEvict 的作用 主要针对方法配置,能够根据一定的条件对缓存进行清空 。
Java
public List <BotRelation > findAllLimit (int num ) { return botRelationRepository .findAllLimit (num ); } ..... }
@CachePut(value = "emp", key = "targetClass + #p0") public NewJob updata (NewJob job ) {
NewJob newJob = newJobDao .findAllById (job .getId ()); newJob .updata (job ); return job ; }
@Cacheable(value = "emp", key = "targetClass +#p0")//清空缓存 public NewJob save (NewJob job ) { newJobDao .save (job ); return job ; }
属性解释
示例
allEntries
是否清空所有缓存内容,缺省为 false,如果指定为 true,则方法调用后将立即清空所有缓存
@CachEvict(value=”testcache ” ,allEntries=true)
beforeInvocation 是否在方法执行前就清空,缺省为 false,如果指定为 true,则在方法还没有执行的时候就清空缓存,缺省情况下,如果方法执行抛出异常,则不会清空缓存
@CachEvict(value=”testcache ”,beforeInvocation=true)
@Cacheable(value = "emp",key = "#p0.id") public NewJob save (NewJob job ) { newJobDao .save (job ); return job ; }
//清除一条缓存,key 为要清空的数据 @CacheEvict(value ="emp",key ="#id") public void delect (int id ) { newJobDao .deleteAllById (id );
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论