Spring IO Platform与spring boot版本对应关系(持续更新)

吕胤
2023-12-01

官方对spring Io platform的概述:SpringIO是一个构建现代应用程序的内聚版本平台。它是一个模块化的企业级发行版,提供一组经过管理的依赖关系,同时让开发人员完全控制只部署他们需要的部分。SpringIO是100%的开源、精益和模块化的。

使用样例

  <parent>
        <groupId>io.spring.platform</groupId>
        <artifactId>platform-bom</artifactId>
        <version>Cairo-SR7</version>
        <relativePath/>
    </parent>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>io.spring.platform</groupId>
                <artifactId>platform-bom</artifactId>
                <version>Cairo-SR7</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

版本对照(关键版本)

Spring IO Platform版本spring boot 版本spring cloud 版本
Cairo-SR72.0.8.RELEASEFinchley
Cairo-SR62.0.7.RELEASEFinchley
Cairo-SR52.0.6.RELEASEFinchley
Brussels-SR161.5.19.RELEASEEdgware
Brussels-SR151.5.18.RELEASEEdgware
Brussels-SR71.5.10.RELEASEEdgware

官网地址

https://spring.io/projects/platform#learn

 类似资料: