首页 > 其他分享 >@Cacheable 、 @CachePut 、@CacheEvict 注解

@Cacheable 、 @CachePut 、@CacheEvict 注解

时间:2023-08-07 22:44:19浏览次数:40  
标签:缓存 cache CachePut entity Cacheable key id CacheEvict

在 Application 类上添加注解 @EnableCaching

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

}

@Cacheable 注解

能够让方法的返回值被缓存起来,后续的请求可以直接从缓存中获取结果。

示例:

    @Cacheable( cacheManager = "cacheManagerTwoHour",
            value = "cache:id:test",
            key = "#id",
            condition = "#id!=null")
    public String getList(String id) {
    	//数据表查询
        return configService.getNameById(id);
    }

解释如下

cacheManager :可以用来指定缓存管理器。从哪个缓存管理器里面获取缓存。非必需。
value 是缓存key的前缀。
key 是缓存的key,其中的 #后面可以带上对象/参数。
condition 是条件。只有符合条件,缓存注解才会生效。

SpringCache注解,会自动拼接好缓存的key,并在中间加上符号:: ,

比如 value = "cache:id:test",  key = "#id",  当参数id为12345时,那么真实的缓存 key 是
cache:id:test::12345
方法参数为对象

示例:

@Cacheable(cacheManager = "cacheManagerTwoHour",
        value = "cache:name:test:",
        key = "#queryDto.amapId",
        condition = "#queryDto.queryType == null or #queryDto.queryType==0")
   public String getListByDto(QueryDto queryDto) {
    	//数据表查询
        return configService.getNameById(id);
    }

如何测试@Cacheable注解是否生效?

先查询一次该方法,然后修改数据库数据,再查询一次方法。

如果 @Cacheable 生效,那查出来的就是缓存的数据,而不是数据库的数据。

@CachePut

对key进行缓存,缓存的值为方法的返回值。可以在数据更新时使用。方法仍然会执行。

以下方法执行后,缓存的key为参数id,缓存对应的值为 entity。

    @CachePut(
            value = "cache:id:test",
            key = "#id",
            condition = "#id!=null")
    public ConfigEntity update(String id) {
        //数据表查询
        ConfigEntity entity = new ConfigEntity();
        entity.setWxBrandId("brandTest456");
        entity.setId("12345");

        configService.updateById(entity);
        return entity;
    }

@Cacheable和@CachePut 的区别:

@Cacheable: 当重复使用相同参数调用方法的时候,不会再次执行方法 ,

方法的结果直接从缓存中找到并返回了。

@CachePut: 方法一直会被执行,同时方法的返回值也被记录到缓存中。

@CacheEvict

删除缓存中指定key的数据的。

    @CacheEvict(
            value = "cache:id:test",
            key = "#id",
            condition = "#id!=null")
	public void update(String id) {
        configService.updateById(id);
    }

执行方法后,缓存中的 key及参数 就被删除了。

参考资料:

https://blog.csdn.net/zl1zl2zl3/article/details/110987968

标签:缓存,cache,CachePut,entity,Cacheable,key,id,CacheEvict
From: https://www.cnblogs.com/expiator/p/17612934.html

相关文章

  • Spring 中的 @Cacheable 缓存注解,太好用了!
    1什么是缓存第一个问题,首先要搞明白什么是缓存,缓存的意义是什么。对于普通业务,如果要查询一个数据,一般直接select数据库进行查找。但是在高流量的情况下,直接查找数据库就会成为性能的瓶颈。因为数据库查找的流程是先要从磁盘拿到数据,再刷新到内存,再返回数据。磁盘相比于内存来......
  • 【SpringBoot】redis keys命令被禁用,spring缓存 @CacheEvict报异常
     背景项目使用springboot整合redis做缓存,代码中使用spring的缓存注解配置缓存策略。在jarvis上部署时接入了公司分布式redis平台代替本地的redis。结果测试的时候,新增一条记录时报了错,提示  ERRunknowncommand'keys' 。经排查发现问题原因:新增记录的函数上有@C......
  • @Cacheable和@CachePut存入redis的数据使用redisTemplate取出时为null的解决
    当使用@Cacheable和@CachePut注解存数据到redis中时如果使用spring默认的rediskey序列化方式时,使用redisTemplate取数据为null@CacheConfig(cacheNames="users")存入redisusers目录下取数据时的key为users::usernamepublicinterfaceUserRepositoryextendsJpaRepos......
  • Redis基于@Cacheable注解实现接口缓存
    说明@Cacheable注解在方法上,表示该方法的返回结果是可以缓存的。也就是说,该方法的返回结果会放在缓存中,以便于以后使用相同的参数调用该方法时,会返回缓存中的值,而不会实际执行该方法。属性名称属性描述举例value/cacheNames指定缓存组件的名字@Cacheable(value="......
  • SpringBoot的开启缓存@EnableCaching 和 使用缓存@Cacheable
    springboot中的缓存注解支持Spel表达式,因此这里展示常用的SpEL表达式1、开启缓存@EnableCachingimportorg.springframework.boot.SpringApplication;importorg.sp......
  • 78、缓存---SpringCache---@CacheEvict
    @CacheEvict(value={"catagory"},key="'OneLevelCategory'")------失效模式例如,当我们修改菜单时,就会删除catagory缓存中的OneLevelCategory缓存如果我们修改......
  • @Cacheable的使用
    SpringBoot缓存之@Cacheable详细介绍https://blog.csdn.net/zl1zl2zl3/article/details/110987968@Cacheable设置过期时间https://blog.csdn.net/weixin_41860719/ar......
  • 77、缓存---SpringCache---整合&体验@Cacheable
    1、导入依赖<!--缓存--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-cache<......
  • @Cacheable使用在MyBatis的Mapper接口上
    背景使用Caffeine本地缓存,外加@Cacheable注解,想把这个注解加到mapper上,并且把参数id做key的时候,发现参数拿不到。这样是拿不到的@Cacheable(value="xxCache",key="......
  • SpringBoot @Cacheable 缓存不生效的问题
    背景Springboot+CaffeineCache+使用@Cacheable注解请求查询一个方法,因为数据变化频率低,查询频率高,于是使用缓存,并使用注解。但发现用了@Cacheable这个注解,发现并......