欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Spring @Cacheable注解中key的使用详解

程序员文章站 2022-06-23 10:31:20
目录spring @cacheable注解中key使用下面是几个使用参数作为key的示例condition属性指定发生的条件@cacheput@cacheevictallentries属性before...

spring @cacheable注解中key使用

key属性是用来指定spring缓存方法的返回结果时对应的key的。该属性支持springel表达式。当我们没有指定该属性时,spring将使用默认策略生成key。我们这里先来看看自定义策略,至于默认策略会在后文单独介绍。

自定义策略是指我们可以通过spring的el表达式来指定我们的key。这里的el表达式可以使用方法参数及它们对应的属性。使用方法参数时我们可以直接使用“#参数名”或者“#p参数index”。

下面是几个使用参数作为key的示例

@cacheable(value="users", key="#id")
   public user find(integer id) {
      returnnull;
   }
   @cacheable(value="users", key="#p0")
   public user find(integer id) {
      returnnull;
   }
   @cacheable(value="users", key="#user.id")
   public user find(user user) {
      returnnull;
   }
   @cacheable(value="users", key="#p0.id")
   public user find(user user) {
      returnnull;
   }

除了上述使用方法参数作为key之外,spring还为我们提供了一个root对象可以用来生成key。通过该root对象我们可以获取到以下信息。

Spring @Cacheable注解中key的使用详解

当我们要使用root对象的属性作为key时我们也可以将“#root”省略,因为spring默认使用的就是root对象的属性。如:

   @cacheable(value={"users", "xxx"}, key="caches[1].name")
   public user find(user user) {
      returnnull;
   }

如果要调用当前类里面的方法

当我们要使用root对象的属性作为key时我们也可以将“#root”省略,因为spring默认使用的就是root对象的属性。如:

   @cacheable(value={"users", "xxx"}, key="caches[1].name")
   public user find(user user) {
      returnnull;
   }

如果要调用当前类里面的方法

@override
    @cacheable(value={"teacheranalysis_public_chart"}, key="#root.target.getdicttablename() + '_' + #root.target.getfieldname()")
    public list<map<string, object>> getchartlist(map<string, object> parammap) {
    }
    public string getdicttablename(){
        return "";
    }
    public string getfieldname(){
        return "";
    }

condition属性指定发生的条件

有的时候我们可能并不希望缓存一个方法所有的返回结果。通过condition属性可以实现这一功能。condition属性默认为空,表示将缓存所有的调用情形。其值是通过springel表达式来指定的,当为true时表示进行缓存处理;当为false时表示不进行缓存处理,即每次调用该方法时该方法都会执行一次。如下示例表示只有当user的id为偶数时才会进行缓存

@cacheable(value={"users"}, key="#user.id", condition="#user.id%2==0")
   public user find(user user) {
      system.out.println("find user by user " + user);
      return user;
   }

@cacheput

在支持spring cache的环境下,对于使用@cacheable标注的方法,spring在每次执行前都会检查cache中是否存在相同key的缓存元素,如果存在就不再执行该方法,而是直接从缓存中获取结果进行返回,否则才会执行并将返回结果存入指定的缓存中。@cacheput也可以声明一个方法支持缓存功能。与@cacheable不同的是使用@cacheput标注的方法在执行前不会去检查缓存中是否存在之前执行过的结果,而是每次都会执行该方法,并将执行结果以键值对的形式存入指定的缓存中。

@cacheput也可以标注在类上和方法上。使用@cacheput时我们可以指定的属性跟@cacheable是一样的。

@cacheput("users")//每次都会执行方法,并将结果存入指定的缓存中
   public user find(integer id) {
      return null;
   }

@cacheevict

@cacheevict是用来标注在需要清除缓存元素的方法或类上的。当标记在一个类上时表示其中所有的方法的执行都会触发缓存的清除操作。@cacheevict可以指定的属性有value、key、condition、allentries和beforeinvocation。其中value、key和condition的语义与@cacheable对应的属性类似。即value表示清除操作是发生在哪些cache上的(对应cache的名称);key表示需要清除的是哪个key,如未指定则会使用默认策略生成的key;condition表示清除操作发生的条件。下面我们来介绍一下新出现的两个属性allentries和beforeinvocation。

allentries属性

allentries是boolean类型,表示是否需要清除缓存中的所有元素。默认为false,表示不需要。当指定了allentries为true时,spring cache将忽略指定的key。有的时候我们需要cache一下清除所有的元素,这比一个一个清除元素更有效率。

@cacheevict(value="users", allentries=true)
   public void delete(integer id) {
      system.out.println("delete user by id: " + id);
   }

beforeinvocation属性

清除操作默认是在对应方法成功执行之后触发的,即方法如果因为抛出异常而未能成功返回时也不会触发清除操作。使用beforeinvocation可以改变触发清除操作的时间,当我们指定该属性值为true时,spring会在调用该方法之前清除缓存中的指定元素。

@cacheevict(value="users", beforeinvocation=true)
   public void delete(integer id) {
      system.out.println("delete user by id: " + id);
   }

其实除了使用@cacheevict清除缓存元素外,当我们使用ehcache作为实现时,我们也可以配置ehcache自身的驱除策略,其是通过ehcache的配置文件来指定的。由于ehcache不是本文描述的重点,这里就不多赘述了,想了解更多关于ehcache的信息,请查看我关于ehcache的专栏。

@caching

@caching注解可以让我们在一个方法或者类上同时指定多个spring cache相关的注解。其拥有三个属性:cacheable、put和evict,分别用于指定@cacheable、@cacheput和@cacheevict。

@caching(cacheable = @cacheable("users"), evict = { @cacheevict("cache2"),
@cacheevict(value = "cache3", allentries = true) })
   public user find(integer id) {
      return null;
   }

使用自定义注解

spring允许我们在配置可缓存的方法时使用自定义的注解,前提是自定义的注解上必须使用对应的注解进行标注。如我们有如下这么一个使用@cacheable进行标注的自定义注解。

@target({elementtype.type, elementtype.method})
@retention(retentionpolicy.runtime)
@cacheable(value="users")
public @interface mycacheable {
}

那么在我们需要缓存的方法上使用@mycacheable进行标注也可以达到同样的效果

@mycacheable
   public user findbyid(integer id) {
      system.out.println("find user by id: " + id);
      user user = new user();
      user.setid(id);
      user.setname("name" + id);
      return user;
   }

@cacheable 拼接key

@cacheable(value = "page_user",key ="t(string).valueof(#page).concat('-').concat(#pagesize)",unless = "#result=null")//由于page是int型,concat要求变量必须为string,所以强转一下
@override
public list<sysuserentity> page(int page, int pagesize) {
    return usermapper.page(page,pagesize);
}

以上为个人经验,希望能给大家一个参考,也希望大家多多支持。