使用Jedis客户端测试Redis (快速入门)
1.导入坐标
在SpringBoot中Redis的 version 版本是不用导入的因为SpringBoot的有些version已经给指定好了,是最兼容的
如果没有使用SpringBoot必须写入相应的版本号
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.4</version>
<scope>import</scope>
<type>pom</type>
</dependency>