其他分享
首页 > 其他分享> > SpringBoot2.X整合Spring-Cache简化缓存开发

SpringBoot2.X整合Spring-Cache简化缓存开发

作者:互联网

引入依赖

<!-- 引入redis -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<!-- 引入SpringCache -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-cache</artifactId>
</dependency>

配置

spring.cache.type=redis

测试使用缓存

@Cacheable注解的使用

/**
 * 1、每一个需要缓存的数据我们都来指定要放到哪个名字的缓存。【缓存的分区(按照业务类型分)】
 * 2、@Cacheable({"category"})
 *      代表当前方法的结果需要缓存,如果缓存中有,方法不再调用。
 *      如果缓存中没有,会调用方法,最后将方法的结果放入缓存。
 * 3、默认行为
 *      1)、如果缓存中有,方法不用调用。
 *      2)、key默认自动生成:格式:缓存的名字::SimpleKey [](自主生成的key值) 例:category::SimpleKey []
 *      3)、缓存的value值,默认使用jdk序列化机制。将序列化后的数据存到redis
 *      4)、默认ttl时间:-1;
 *
 *   自定义:
 *      1)、指定生成的缓存使用的key key属性指定,接受一个SpEl @Cacheable(value = {"category"}, key = "#root.method.name")
 				key的SpEl可以参考:https://docs.spring.io/spring-framework/docs/5.2.19.RELEASE/spring-framework-reference/integration.html#cache-spel-context

 *      2)、指定缓存的数据的存活时间 spring.cache.redis.time-to-live=3600000
 *      3)、将数据保存为json格式
 *
 *
 * @return
 */
@Cacheable(value = {"category"}, key = "#root.method.name")
@Override
public List<CategoryEntity> findCatelog1() {
  System.out.println("查询数据库---");
  return baseMapper.selectList(new QueryWrapper<CategoryEntity>().eq("parent_cid", 0));
}

@CacheEvict注解的使用

/**
 * 使用失效模式:先删除缓存,在访问系统获得缓存
 * findCatelog1:缓存时的key名
 * value = "category" 需要与缓存时的名称相同
 * 存储同一个类型的数据,都可以指定成同一个分区。分区名默认就是缓存的前缀
 */
// @CacheEvict(value = "category", key = "'findCatelog1'")// 删除具体key的缓存
@CacheEvict(value = "category", allEntries = true)// 指定删除某个分区下的所有数据
@Transactional
@Override
public void updateCascade(CategoryEntity category) {
  this.updateById(category);
  categoryBrandRelationService.updateCategory(category.getCatId(), category.getName());
}

@Caching注解的使用

/**
 * @CacheEvict: 失效模式:先删除缓存,在访问系统获得缓存
 * 1、同时进行多种缓存操作  @Caching
 * 2、指定删除某个分区下的所有数据
 * @param category
 */
@Caching(evict = {
  @CacheEvict(value = "category", key = "'findCatelog1'"),// 删除缓存
  @CacheEvict(value = "category", key = "'getCatalogJson'"),// 删除缓存
})
@Transactional
@Override
public void updateCascade(CategoryEntity category) {
  this.updateById(category);
  categoryBrandRelationService.updateCategory(category.getCatId(), category.getName());
}

@CachePut注解的使用

@CachePut // 双写模式时使用

Spring-Cache的不足

读模式

写模式

总结

常规数据(读多写少,即时性,一致性要求不高的数据),完全可以使用Spring-Cache。写模式:只要缓存的数据有过期时间就足够了

特殊数据:特殊设计

标签:category,cache,Spring,Cache,缓存,SpringBoot2,key,spring,config
来源: https://blog.csdn.net/m0_62415474/article/details/122333358