redis 6.2.6 对应 <dependency> <groupId>org.redisson</groupId> <artifactId>redisson-spring-boot-starter</artifactId> <version>3.13.3</version> </dependency> 的依赖版本
时间: 2023-08-14 21:59:28 浏览: 68
spring-boot-starter-test-2.2.13.RELEASE.jar
对于Redis 6.2.6版本,与Redisson的Spring Boot Starter依赖的版本是3.13.3。这个版本的Redisson提供了与Redis 6.2.x版本兼容的功能和API。
所以,你可以在你的项目中添加以下依赖来使用Redisson与Redis 6.2.6进行交互:
```xml
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson-spring-boot-starter</artifactId>
<version>3.13.3</version>
</dependency>
```
请确保将上述依赖添加到你的项目的pom.xml文件中,并根据需要进行其他配置。这样,你就可以使用Redisson与Redis 6.2.6进行集成和交互了。
阅读全文