【springboot】Spring Cache缓存:

文章目录

        • 一、导入Maven依赖:
        • 二、实现思路:
        • 三、代码开发:


一、导入Maven依赖:

【springboot】Spring Cache缓存:_第1张图片

<dependency>
	<groupId>org.springframework.bootgroupId>
	<artifactId>spring-boot-starter-cacheartifactId>
	<version>2.7.3version>
dependency>

【springboot】Spring Cache缓存:_第2张图片

二、实现思路:

【springboot】Spring Cache缓存:_第3张图片

三、代码开发:

【springboot】Spring Cache缓存:_第4张图片

@Cacheable(cacheNames = "setmealCache",key = "#categoryId") 

【springboot】Spring Cache缓存:_第5张图片

@CacheEvict(cacheNames = "setmealCache",key = "#setmealDTO.categoryId")//key: setmealCache::100
 
@CacheEvict(cacheNames = "setmealCache",allEntries = true)

【springboot】Spring Cache缓存:_第6张图片
【springboot】Spring Cache缓存:_第7张图片

你可能感兴趣的:(springboot,spring,spring,boot,缓存)