springboot与springcloud版本对应关系查询方式

如果不知道自己应该选用哪个版本,可以到网页查询

https://mvnrepository.com/

使用parent确定所有springboot版本,无需再单独写每一个依赖包版本

 

<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.6.7</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

 

关于springboot与springcloud版本对应关系

查询网站:https://spring.io/projects/spring-cloud

 

Release TrainBoot Version

2021.0.x aka Jubilee

2.6.x

2020.0.x aka Ilford

2.4.x, 2.5.x (Starting with 2020.0.3)

Hoxton

2.2.x, 2.3.x (Starting with SR5)

Greenwich

2.1.x

Finchley

2.0.x

Edgware

1.5.x

Dalston

1.5.x

 根据选定的springboot版本  点进去查询cloud依赖包对应的可用版本

spring cloud alibaba  版本如下:

 

 


版权声明:本文为weixin_36815961原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。