美文网首页
org.springframework.boot:sprint-

org.springframework.boot:sprint-

作者: dozenx | 来源:发表于2022-12-12 10:13 被阅读0次

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>

相关文章

网友评论

      本文标题:org.springframework.boot:sprint-

      本文链接:https://www.haomeiwen.com/subject/icifqdtx.html