如何查看redisson-spring-boot-starter和SpringBoot 对应版本
我目前没有找到官网的地址来来查看对应关系。
所以我只能找pom.xml来查看
先在mvnrepository 找到redisson-spring-boot-starter的列表
具体地址是:https://mvnrepository.com/artifact/org.redisson/redisson-spring-boot-starter
然后再项目的pom文件中添加依赖
XML
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson-spring-boot-starter</artifactId>
<version>3.26.0</version>
</dependency>
然后更换version的版本号,然后点击进去查看redisson-spring-boot-starter的pom文件。
redisson-spring-boot-starter的3.26.1对应spring-boot的3.2.2;
redisson-spring-boot-starter的3.26.0对应spring-boot的3.2.0;
redisson-spring-boot-starter的3.18.0对应spring-boot的2.7.2;
redisson-spring-boot-starter的3.18.0对应spring-boot的2.7.2;
redisson-spring-boot-starter的3.16.0对应spring-boot的2.4.4;