错误原因:
1.注解包导入错误
弹出的两个注解中应选org.springframework.cache.annotation.Cacheable包下的,就是第二个
2.检查pom.xml文件中相关依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
3.是否导入@Cacheable
注解
import org.springframework.cache.annotation.Cacheable;