SpringCache
简介:是一个框架,实现了基于注解的缓存功能,底层可以切换不同的cache的实现,具体是通过CacheManager接口实现
使用springcache,根据实现的缓存技术,如使用的redis,需要导入redis的依赖包
基于map缓存
1.@CachePut,将方法的返回值放进缓存
@CachePut(value=“自定义缓存名”,key=“键名(用#+返回的具体对象.id
)”)
2.@CacheEvict,将缓存删除
3.Cacheable,查看缓存数据,有就直接查看,没有就放进缓存
springcache-基于redis进行缓存
1.导入maven坐标spring-boot-data-redis,spring-boot-starter-cache
2.配置yml文件,配置redis,配置spring-cache
3.启动类上开启缓存注解,@EnableCaching
4.执行缓存命令