Spring Cache 使用 SCAN 来批量删除缓存
在 Spring Boot 应用中使用 Spring Cache 管理缓存时,可以通过调用 `@CacheEvict(allEntries=true)` 注解的方法来批量删除当前缓存(`cacheNames`) 下的所有缓存项目。如下: ```java package cn.springdoc.demo.cache; import org.springframework...
在 Spring Boot 应用中使用 Spring Cache 管理缓存时,可以通过调用 `@CacheEvict(allEntries=true)` 注解的方法来批量删除当前缓存(`cacheNames`) 下的所有缓存项目。如下: ```java package cn.springdoc.demo.cache; import org.springframework...