在项目迭代过程中,经常会升级原有组件或者接入新的组件,有时候由于版本不匹配的问题往往容易出现各种集成bug以及jar包的版本冲突的问题,Spring官方有发布SpringBoot和SpringCloud的对应关系,此处记录以防忘记。

方式一:SpringCloud官网页面

  访问SpringCloud官网后下拉有列举SpringBoot与SpringCloud对应关系表,左边SpringCloud版本,右边是SpringBoot版本,点击左侧链接可跳转github查看具体有哪些版本号。

 

       

 

方式二:请求接口获取

  浏览器直接访问: https://start.spring.io/actuator/info  ,返回如下报文。

{
    "bom-ranges": {
        "codecentric-spring-boot-admin": {
            "2.4.3": "Spring Boot >=2.3.0.M1 and <2.5.0-M1",
            "2.5.6": "Spring Boot >=2.5.0.M1 and <2.6.0-M1",
            "2.6.8": "Spring Boot >=2.6.0.M1 and <2.7.0-M1",
            "2.7.4": "Spring Boot >=2.7.0.M1 and <3.0.0-M1",
            "3.0.0-M4": "Spring Boot >=3.0.0-M1 and <3.1.0-M1"
        },
        "hilla": {
            "1.3.5": "Spring Boot >=2.7.0-M1 and <3.0.0-M1",
            "2.0.0": "Spring Boot >=3.0.0-M1 and <3.1.0-M1"
        },
        "solace-spring-boot": {
            "1.1.0": "Spring Boot >=2.3.0.M1 and <2.6.0-M1",
            "1.2.2": "Spring Boot >=2.6.0.M1 and <3.0.0-M1"
        },
        "solace-spring-cloud": {
            "1.1.1": "Spring Boot >=2.3.0.M1 and <2.4.0-M1",
            "2.1.0": "Spring Boot >=2.4.0.M1 and <2.6.0-M1",
            "2.3.2": "Spring Boot >=2.6.0.M1 and <3.0.0-M1"
        },
        "spring-cloud": {
            "2020.0.6": "Spring Boot >=2.4.0.M1 and <2.6.0-M1",
            "2021.0.0-M1": "Spring Boot >=2.6.0-M1 and <2.6.0-M3",
            "2021.0.0-M3": "Spring Boot >=2.6.0-M3 and <2.6.0-RC1",
            "2021.0.0-RC1": "Spring Boot >=2.6.0-RC1 and <2.6.1",
            "2021.0.6": "Spring Boot >=2.6.1 and <3.0.0-M1",
            "2022.0.0-M1": "Spring Boot >=3.0.0-M1 and <3.0.0-M2",
            "2022.0.0-M2": "Spring Boot >=3.0.0-M2 and <3.0.0-M3",
            "2022.0.0-M3": "Spring Boot >=3.0.0-M3 and <3.0.0-M4",
            "2022.0.0-M4": "Spring Boot >=3.0.0-M4 and <3.0.0-M5",
            "2022.0.0-M5": "Spring Boot >=3.0.0-M5 and <3.0.0-RC1",
            "2022.0.0-RC1": "Spring Boot >=3.0.0-RC1 and <3.0.0-RC2",
            "2022.0.0-RC2": "Spring Boot >=3.0.0-RC2 and <3.0.0",
            "2022.0.1": "Spring Boot >=3.0.0 and <3.1.0-M1",
            "Hoxton.SR12": "Spring Boot >=2.2.0.RELEASE and <2.4.0.M1"
        },
        "spring-cloud-azure": {
            "4.6.0": "Spring Boot >=2.5.0.M1 and <3.0.0-M1",
            "5.0.0": "Spring Boot >=3.0.0-M1 and <3.1.0-M1"
        },
        "spring-cloud-gcp": {
            "2.0.11": "Spring Boot >=2.4.0-M1 and <2.6.0-M1",
            "3.4.6": "Spring Boot >=2.6.0-M1 and <3.0.0-M1",
            "4.1.2": "Spring Boot >=3.0.0-M1 and <3.1.0-M1"
        },
        "spring-cloud-services": {
            "2.3.0.RELEASE": "Spring Boot >=2.3.0.RELEASE and <2.4.0-M1",
            "2.4.1": "Spring Boot >=2.4.0-M1 and <2.5.0-M1",
            "3.3.0": "Spring Boot >=2.5.0-M1 and <2.6.0-M1",
            "3.4.0": "Spring Boot >=2.6.0-M1 and <2.7.0-M1",
            "3.5.0": "Spring Boot >=2.7.0-M1 and <3.0.0-M1",
            "4.0.0": "Spring Boot >=3.0.0 and <3.1.0-M1"
        },
        "spring-shell": {
            "2.1.6": "Spring Boot >=2.7.0 and <3.0.0-M1",
            "3.0.0": "Spring Boot >=3.0.0 and <3.1.0-M1"
        },
        "vaadin": {
            "14.9.6": "Spring Boot >=2.1.0.RELEASE and <2.6.0-M1",
            "23.2.15": "Spring Boot >=2.6.0-M1 and <2.7.0-M1",
            "23.3.5": "Spring Boot >=2.7.0-M1 and <3.0.0-M1",
            "24.0.0": "Spring Boot >=3.0.0-M1 and <3.1.0-M1"
        },
        "wavefront": {
            "2.0.2": "Spring Boot >=2.1.0.RELEASE and <2.4.0-M1",
            "2.1.1": "Spring Boot >=2.4.0-M1 and <2.5.0-M1",
            "2.2.2": "Spring Boot >=2.5.0-M1 and <2.7.0-M1",
            "2.3.4": "Spring Boot >=2.7.0-M1 and <3.0.0-M1",
            "3.0.1": "Spring Boot >=3.0.0-M1 and <3.1.0-M1"
        }
    },
    "build": {
        "artifact": "start-site",
        "group": "io.spring.start",
        "name": "start.spring.io website",
        "time": "2023-03-10T15:27:19.222Z",
        "version": "0.0.1-SNAPSHOT",
        "versions": {
            "initializr": "0.20.0-SNAPSHOT",
            "spring-boot": "3.0.2"
        }
    },
    "dependency-ranges": {
        "camel": {
            "3.10.0": "Spring Boot >=2.4.0.M1 and <2.5.0-M1",
            "3.13.0": "Spring Boot >=2.5.0.M1 and <2.6.0-M1",
            "3.17.0": "Spring Boot >=2.6.0.M1 and <2.7.0-M1",
            "3.20.2": "Spring Boot >=2.7.0.M1 and <3.0.0-M1",
            "3.5.0": "Spring Boot >=2.3.0.M1 and <2.4.0-M1",
            "4.0.0-M2": "Spring Boot >=3.0.0-M1 and <3.1.0-M1"
        },
        "mybatis": {
            "2.1.4": "Spring Boot >=2.1.0.RELEASE and <2.5.0-M1",
            "2.2.2": "Spring Boot >=2.5.0-M1 and <2.7.0-M1",
            "2.3.0": "Spring Boot >=2.7.0-M1 and <3.0.0-M1",
            "3.0.0": "Spring Boot >=3.0.0-M1"
        },
        "okta": {
            "1.4.0": "Spring Boot >=2.2.0.RELEASE and <2.4.0-M1",
            "1.5.1": "Spring Boot >=2.4.0-M1 and <2.4.1",
            "2.0.1": "Spring Boot >=2.4.1 and <2.5.0-M1",
            "2.1.6": "Spring Boot >=2.5.0-M1 and <3.0.0-M1",
            "3.0.3": "Spring Boot >=3.0.0-M1 and <3.1.0-M1",
            "managed": "Spring Boot >=3.1.0-M1"
        },
        "open-service-broker": {
            "3.2.0": "Spring Boot >=2.3.0.M1 and <2.4.0-M1",
            "3.3.1": "Spring Boot >=2.4.0-M1 and <2.5.0-M1",
            "3.4.1": "Spring Boot >=2.5.0-M1 and <2.6.0-M1",
            "3.5.0": "Spring Boot >=2.6.0-M1 and <2.7.0-M1"
        },
        "picocli": {
            "4.7.0": "Spring Boot >=2.5.0.RELEASE and <3.1.0-M1"
        }
    },
    "git": {
        "branch": "aa1ad68ea9a0eac4180037118854753f3e200e85",
        "commit": {
            "id": "aa1ad68",
            "time": "2023-03-10T15:26:12Z"
        }
    }
}

 

可找到SpringCloud与SpringBoot版本关系

 

转自:
https://www.cnblogs.com/MuXinu/p/17219436.html