文章目录
缓存
对于 JSR107 规范:
Java Caching (使用需要引入JCache)定义了5个核心接口,分别是CachingProvider, CacheManager, Cache, Entry
和 Expiry。
- CachingProvider定义了创建、配置、获取、管理和控制多个CacheManager。一个应用可
以在运行期访问多个CachingProvider。 • CacheManager定义了创建、配置、获取、管理和控制多个唯一命名的Cache,这些Cache
存在于CacheManager的上下文中。一个CacheManager仅被一个CachingProvider所拥有。 - Cache是一个类似Map的数据结构并临时存储以Key为索引的值。一个Cache仅被一个
CacheManager所拥有。 - Entry是一个存储在Cache中的key-value对。
- Expiry每一个存储在Cache中的条目有一个定义的有效期。一旦超过这个时间,条目为过期
的状态。一旦过期,条目将不可访问、更新和删除。缓存有效期可以通过ExpiryPolicy设置。
关系图如下:
Spring缓存抽象
由于 JSR107 使用过程比较复杂,所以 Spring 定义了 org.springframework.cache.Cache
和 org.springframework.cache.CacheManager 接口来统一不同的缓存技术;并支持使用JCache(JSR-107)注解简化我们开发。
注:Cache接口下Spring提供了各种xxxCache的实现,如:RedisCache,EhCacheCache ,
ConcurrentMapCache等;
主要的概念与缓存注解:
示例
- 开启缓存注解
@SpringBootApplication
@MapperScan("com.moke.cache.mapper")
@EnableCaching
public class SpringbootCacheApplication {
public static void main(String[] args) {
SpringApplication.run(SpringbootCacheApplication.class, args);
}
}
2.使用缓存
@Service
public class EmployeeService {
@Autowired
private EmployeeMapper employeeMapper;
/*
@Cacheable的几个属性
cacheNmaes/value:指定缓存组件的名字,将方法的返回结果放到指定缓存中,可以以数组方式指定多个缓存
key:缓存数据使用的key,默认是使用方法参数的值【SpEL表达式】
keyGenerator:key的生成器,也可以自己指定
cacheManager/cacheResolver:指定缓存管理器/缓存解析器
condition:指定符合条件的情况下,才进行缓存
condition = "#id>0",
unless:否定缓存,当unless指定的条件为true,不会被缓存,可以获取到结果进行判断
unless = "#result==null"
sync:是由使用异步模式
*/
@Cacheable(cacheNames = "emp")
public Employee getEmp(Integer id){
return employeeMapper.getEmpById(id);
}
}
缓存原理
相关自动配置类:CacheAutoConfiguration
@Import({
CacheAutoConfiguration.CacheConfigurationImportSelector.class})
由上面的注解会根据我们使用的缓存类型选择相应的缓存配置类:
而默认使用的是:org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration
SimpleCacheConfiguration 在容器中注册了一个缓存管理器 ConcurrentMapCacheManager ,而它可以获取和创建 ConcurrentMapCache 类型的缓存组件,并将数据保存在一个 ConcurrentMap 中: