@CacheEvict支持指定key值,进行缓存失效

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@CacheEvict支持指定key值,进行缓存失效相关的知识,希望对你有一定的参考价值。

参考技术A Spring Cache默认的KeyGenerator,在注解中必须指定key(不指定时会以方法中的参数作为key的内容)。如果同个缓存的操作不同的方法, 一个新增另一个失效,那么@CacheEvict和@Cacheable注解上的key必须要保持一致, 这时候如果方法的参数不一致,会导致缓存的操作失败,因为这时候完整的key已经不一致了

缓存值的写入默认是使用二进制的, 这里改用jackson进行序列化; 有个地方需要注意, EMPTY_KEY 需要符合 spring-expression 表达式的规范, 否则会报错

SpringCache

SpringCache使用方法与Spring对事务管理的配置相似。SpringCache的核心就是对某
个方法进行缓存,其实质就是缓存该方法的返回结果,并把方法参数和结果用键值对的方式存放到缓存中,当再次调用该方法使用相应的参数时,就会直接从缓存里面取出指
定的结果进行返回。

 

@Cacheable-------使用这个注解的方法在执行后会缓存其返回结果。
@CacheEvict--------使用这个注解的方法在其执行前或执行后移除SpringCache中的某些
元素。

 

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring‐boot‐starter‐data‐redis</artifactId>
</dependency>

 application.yml

redis:
    host:192.168.12.129

  

@SpringBootApplication
@EnableCaching
public class GatheringApplication 

	public static void main(String[] args) 
		SpringApplication.run(GatheringApplication.class, args);
	

	@Bean
	public IdWorker idWorkker()
		return new IdWorker(1, 1);
	
	

  

在GatheringService的findById方法添加缓存注解,这样当此方法第一次运行,在缓存中没有找到对应的value和key,则将查询结果放入缓存。

/**
*根据ID查询实体
*@paramid
*@return
*/
    @Cacheable(value="gathering",key="#id")
    public Gathering findById(String id)
     return gatheringDao.findById(id).get();

当我们对数据进行删改的时候,需要更新缓存。其实更新缓存也就是清除缓存,因为清除缓存后,用户再次调用查询方法无法提取缓存会重新查找数据库中的记录并放入
缓存。
在GatheringService的update、deleteById方法上添加清除缓存的注解

 

/**
*修改
*@paramgathering
*/
@CacheEvict(value="gathering",key="#gathering.id")
public void update(Gathering gathering)
  gatheringDao.save(gathering);

/**
*删除
*@paramid
*/
@CacheEvict(value="gathering",key="#id")
public void deleteById(String id)
  gatheringDao.deleteById(id);

  


  

  

以上是关于@CacheEvict支持指定key值,进行缓存失效的主要内容,如果未能解决你的问题,请参考以下文章

ehcache模糊批量移除缓存

springcache清除过期缓存

Spring缓存注解@Cache,@CachePut , @CacheEvict,@CacheConfig使用

Spring缓存注解@Cacheable@CacheEvict@CachePut使用

SpringBoot笔记

Spring Boot缓存注解@Cacheable@CacheEvict@CachePut使用