java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > Springboot数据缓存

Springboot使用@Cacheable注解实现数据缓存

作者:sg_knight

本文介绍如何在Springboot中通过@Cacheable注解实现数据缓存,在每次调用添加了@Cacheable注解的方法时,Spring 会检查指定参数的指定目标方法是否已经被调用过,文中有详细的代码示例,需要的朋友可以参考下

1、添加 @EnableCaching

使用 @EnableCaching 标识在 SpringBoot 的主启动类上,开启基于注解的缓存。

@EnableCaching
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application .class, args);
    }
}

2、添加@Cacheable

在需要缓存的方法上添加@Cacheable注解。以后查询相同的数据,直接从缓存中取,不需要调用方法。

@Cacheable(value = "areaTreeData")
public CommonResult<List<Map<String, Object>>> queryTreeData(Long pId, Long lv) {
  Map<String, Object> map = new HashMap<>();
  map.put("state", 1);
  List<Map<String, Object>> list = getTreeData(map, pId, lv);
  return new CommonResult<>(list);
}

注意:

1、返回的数据类型必须支持序列化或实现了Serializable接口,否则数据没法缓存。

2、只有直接调用该方法才能缓存,不能通过类中的其他方法来调用。

3、常用属性说明

4、@CacheEvict注解

@CachEvict 的作用 主要针对方法配置,能够根据一定的条件对缓存进行清空。常用属性参数如下:

参数解释example
value缓存的名称,在 spring 配置文件中定义,必须指定至少一个@CacheEvict(value=”my cache”)
key缓存的 key,可以为空,如果指定要按照 SpEL 表达式编写,如果不指定,则缺省按照方法的所有参数进行组合@CacheEvict(value=”testcache”,key=”#userName”)
condition缓存的条件,可以为空,使用 SpEL 编写,返回 true 或者 false,只有为 true 才进行缓存@CacheEvict(value=”testcache”,condition=”#userName.length()>2”)
allEntries是否清空所有缓存内容,缺省为 false,如果指定为 true,则方法调用后将立即清空所有缓存@CachEvict(value=”testcache”,allEntries=true)
beforeInvocation是否在方法执行前就清空,缺省为 false,如果指定为 true,则在方法还没有执行的时候就清空缓存,缺省情况下,如果方法执行抛出异常,则不会清空缓存@CachEvict(value=”testcache”,beforeInvocation=true)
@CacheEvict(value = "areaTreeData", allEntries = true, beforeInvocation = true)
public Integer save(SysArea sysArea) {
   return mapper.insertSelective(sysArea);
}

以上就是Springboot使用@Cacheable注解实现数据缓存的详细内容,更多关于Springboot数据缓存的资料请关注脚本之家其它相关文章!

您可能感兴趣的文章:
阅读全文