黑豹程序员-SpringCache评说真香,实测的确!

简述

Spring Cache是一种抽象,使缓存的实现变得更加灵活。它可以与各种缓存提供者集成,如Ehcache、Redis、Gemfire等。Spring Cache通过对方法运行结果的缓存实现了对方法级别的缓存管理。

1、依赖

<!-- 启用Spring Cache缓存,提升效率 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-cache</artifactId>
        </dependency>

2、启动缓存

启动类上加@EnableCaching注解

@EnableCaching  //开启SpringCache缓存
public class SystemRunApp {
    public static void main(String[] args) {
        SpringApplication.run(SystemRunApp.class);
    }
}

3、设置缓存

@Cacheable,必须指定名字,日常可以以controller的请求链接未名字,必须唯一,否则就被覆盖

    @Cacheable("/system/tenant/get")        //缓存
    @GetMapping("/system/tenant/get")
    public R get(){
        return R.success(tenantService.get());
    }

4、清除缓存

@CacheEvict 可以指定多个key,数组形式

    @CacheEvict({"/system/tenant/list","/system/tenant/get"})       //删除缓存
    @PutMapping("/system/tenant/change/{id}")
    public R change(@PathVariable Serializable id){
        Tenant tenant = tenantService.getById(id);
        tenant.setUpdateTime(new Date());   //技巧:时间最近的为当前租户
        tenantService.saveOrUpdate(tenant);
        return R.success();
    }

附:清除缓存的两种方式

通常我们不希望缓存中的数据一直存在,需要在一定条件下将缓存清除,常见的清除缓存的方法有两种:

  1. 使用@CacheEvict注解
    @CacheEvict注解用于标注需要清除缓存的方法。它有三个属性,分别是value、key和condition。

value用于指定缓存的名称,对应于@Cacheable和@CachePut注解的value属性。而key用于指定缓存的Key值。condition用于根据条件清除缓存。

  1. 使用CacheManager
    通过CacheManager可以对缓存进行更加灵活的管理,可以选择性地清除某些缓存。方法如下:

1.注入CacheManager实例:

@Autowired
CacheManager cacheManager;

2.清除某个缓存:

cacheManager.getCache(“cacheName”).clear();

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值