第一步:在 pom.xml 文件中导入对应坐标
<!--cache--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-cache</artifactId> </dependency>
第二步:启用缓存 在启动类是加上 @EnableCaching 注解以 开启缓存功能
第三步:在对应的实现类上 设置当前操作的结果进入缓存
完成!!
标签:缓存,springboot,cache,boot,整合,对应 From: https://www.cnblogs.com/yws-blog/p/17485219.html