【笔记】SpringBoot Cache 发表于 2020-10-24 更新于 2024-09-07 分类于 Java后端学习指北 阅读次数: 前言 SpringBoot使用通过原生AOP实现的Cache 为当前方法添加Cache methodCache:Cache名 12@Cacheable("methodCache")public void method(){} 启动清理缓存 value:清理的Cache名 allEntries:清理全部内容 beforeInvocation:清理时间在方法执行前 12@CacheEvict(value = "methodCache", allEntries = true, beforeInvocation = true)public void method(){} 完成