Spring Cache框架
Spring Cache 是一个框架,实现了基于注解的缓存功能,只需要简单地加一个注解,就能实现缓存功能。
Spring Cache 提供了一层抽象,底层可以切换不同的缓存实现,例如:
- EHCache
- Caffeine
- Redis(常用)
常用注解
@EnableCaching 开启缓存注解功能,通常加在启动类上
@Cacheable 在方法执行前先查询缓存中是否有数据,如果有数据,则直接返回缓存数据;如果没有缓存数据,调用方法并将方法返回值放到缓存中
@CachePut 将方法的返回值放到缓存中
@CacheEvict 将一条或多条数据从缓存中删除
在spring boot项目中,使用缓存技术只需在项目中导入相关缓存技术的依赖包,并在启动类上使用@EnableCaching开启缓存支持即可。
例如,使用Redis作为缓存技术,只需要导入Spring data Redis的maven坐标即可。
具体使用
导入Maven坐标
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-cache</artifactId> <version>2.7.3</version>
</dependency>
添加EnableCache注解
package com.sky;
@SpringBootApplication
@EnableTransactionManagement //开启注解方式的事务管理
@EnableCaching //开启缓存注解 功能
@Slf4j
@EnableScheduling // 开启任务调度
public class SkyApplication {public static void main(String[] args) {SpringApplication.run(SkyApplication.class, args);log.info("server started");}
}
在用户端的SetmealController套餐Controller中的查询方法加入注解@Cacheable
- 作用: 在方法执行前,spring先查看缓存中是否有数据,如果有数据,则直接返回缓存数据;若没有数据,调用方法并将方法返回值放到缓存中
- 在根据分类id查询套餐的时候
/*** 条件查询** @param categoryId 分类id* @return*/
@Cacheable(cacheNames = "setmealCache", key = "#categoryId")// 存储到Redis中的key为:setmealCache::100
@GetMapping("/list")
@ApiOperation("根据分类id查询套餐")
public Result<List<Setmeal>> list(Long categoryId) {Setmeal setmeal = new Setmeal();setmeal.setCategoryId(categoryId);setmeal.setStatus(StatusConstant.ENABLE);List<Setmeal> list = setmealService.list(setmeal);// cache中存的value是该方法的返回结果return Result.success(list);
}
在管理端接口SetmealController的 save、delete、update、startOrStop等方法上加入CacheEvict注解
- 新增的话,删除要新增到分类的分类id
- 批量删除,删除所有的缓存
- 修改,删除所有的缓存
- 套餐起售停售,删除所有的缓存
- @CacheEvict(cacheNames = “setmealCache”,key = “#setmealDTO.categoryId”)//key: setmealCache::100
- @CacheEvict(cacheNames = “setmealCache”,allEntries = true)
/*** 新增套餐** @param setmealDTO* @return*/
@PostMapping
@ApiOperation("新增套餐")
@CacheEvict(cacheNames = "setmealCache",key = "#setmealDTO.categoryId")//key: setmealCache::100
public Result save(@RequestBody SetmealDTO setmealDTO) {setmealService.saveWithDish(setmealDTO);return Result.success();
}/*** 批量删除套餐** @param ids* @return*/
@DeleteMapping
@ApiOperation("批量删除套餐")
@CacheEvict(cacheNames = "setmealCache",allEntries = true)
public Result delete(@RequestParam List<Long> ids) {setmealService.deleteBatch(ids);return Result.success();
参考
https://www.bilibili.com/video/BV1TP411v7v6/?spm_id_from=333.337.search-card.all.click&vd_source=0d2a9b4260ce977e642d073c6ee2260d