org.springframework.boot:sprint-boot-starter-data-redis 和 org.springframework.data:spring-data-redis的区别
一个是spring的redis 启动器 ,能够帮助配置redis的一些配置信息
一个是spring redis的工具类 用来对接redis接口
注意这句话
:sprint-boot-starter-data-redis 的pom文件里 包含了 spring-data-redis的依赖
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>2.3.5.RELEASE</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
<version>2.3.5.RELEASE</version>
<scope>compile</scope>
</dependency>