引入 spring-boot-starter-redis报错
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-redis</artifactId>
</dependency>
错误提示:

问题解决:加上data
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
本文解决在引入Spring Boot Redis Starter依赖时遇到的报错问题,通过增加特定依赖来解决。
1万+

被折叠的 条评论
为什么被折叠?



