错误org.springframework.boot.autoconfigure.data.redis.RedisRepositoriesAutoConfiguration 【。。。】nested exception is java.lang.NoClassDefFoundError: org/springframework/data/repository/config/Repo
原因:缺少jar包
解决:
第一种
- 离线下载jar包放在相应的位置
第二种:更换版本,加载完在更回来
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>