数据来源:Spring Cloud Alibaba 官方 Wiki

SpringBoot 3.3.4 之后

Spring Cloud Alibaba Version Spring Cloud Version Spring Boot Version
2025.1.0.0 2025.1.0 4.0.0
Spring Cloud Alibaba Version Spring Cloud Version Spring Boot Version
2025.0.0.0 2025.0.0 3.5.0

组件版本关系

每个 Spring Cloud Alibaba 版本及其自身所适配的各组件对应版本如下表所示:

Spring Cloud Alibaba Version Sentinel Version Nacos Version RocketMQ Version SchedulerX Version Seata Version
2025.1.0.0 1.8.9 3.1.1 5.3.1 1.13.3 2.5.0
2025.0.0.0 1.8.9 3.0.3 5.3.1 1.13.1 2.5.0

依赖引入

<dependencyManagement>
    <dependencies>
        <!-- Spring Boot 版本统一管理 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-dependencies</artifactId>
            <version>3.5.0</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>

        <!-- Spring Cloud 官方版本管理 -->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>2025.0.0</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>

        <!-- Spring Cloud Alibaba 阿里生态统一版本 -->
        <dependency>
            <groupId>com.alibaba.cloud</groupId>
            <artifactId>spring-cloud-alibaba-dependencies</artifactId>
            <version>2025.0.0.0</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

SpringBoot 3.3.4 及以前


📌 新版本(Calendar Versioning,推荐使用)

Spring Cloud Alibaba Spring Cloud Spring Boot
2023.0.3.2 2023.0.3 3.3.4
2023.0.3.0 2023.0.3 3.3.4
2023.0.1.0 2023.0.1 3.2.4
2023.0.0.0-RC1 2023.0.0 3.2.0
2022.0.0.0 2022.0.0 3.0.2
2022.0.0.0-RC2 2022.0.0-RC2 3.0.2
2022.0.0.0-RC1 2022.0.0-RC1 3.0.0
2021.0.6.2 2021.0.9 2.7.18
2021.0.6.0 2021.0.9 2.7.18
2021.0.5.0 2021.0.5 2.6.13
2021.0.4.0 2021.0.4 2.6.11
2021.0.1.0 2021.0.1 2.6.3
2021.1 2020.0.1 2.4.2

📌 旧版本(RELEASE 命名)

Spring Cloud Alibaba Spring Cloud Spring Boot
2.2.10.RELEASE Hoxton.SR12 2.3.12.RELEASE
2.2.9.RELEASE Hoxton.SR12 2.3.12.RELEASE
2.2.8.RELEASE Hoxton.SR12 2.3.12.RELEASE
2.2.7.RELEASE Hoxton.SR12 2.3.12.RELEASE
2.2.6.RELEASE Hoxton.SR9 2.3.2.RELEASE
2.2.1.RELEASE Hoxton.SR3 2.2.5.RELEASE
2.2.0.RELEASE Hoxton.RELEASE 2.2.X.RELEASE
2.1.4.RELEASE Greenwich.SR6 2.1.13.RELEASE
2.1.2.RELEASE Greenwich 2.1.X.RELEASE
2.0.4.RELEASE ⛔ Finchley 2.0.X.RELEASE
1.5.1.RELEASE ⛔ Edgware 1.5.X.RELEASE

⛔ 表示已停止维护


✅ 常用推荐组合

场景 Spring Boot SCA 版本
最新稳定(JDK 17/21) 3.3.4 2023.0.3.2
主流稳定(JDK 17) 3.2.4 2023.0.1.0
稳定过渡(JDK 11/17) 2.7.18 2021.0.6.2
老项目维护(JDK 8) 2.6.13 2021.0.5.0
经典老项目(JDK 8) 2.3.12.RELEASE 2.2.10.RELEASE

⚠️ 重要说明

  1. 版本命名规则(2021+ 之后):SCA 版本号 = ${Spring Cloud 版本}.${SCA 自身小版本}
  2. 务必三者匹配,不要随意混搭
  3. 如有疑问请以 官方 Releases 页 为准