spring boot 与 spring cloud 版本映射

spring boot 依赖

1  <parent>
2      <groupId>org.springframework.boot</groupId>
3      <artifactId>spring-boot-starter-parent</artifactId>
4      <version>2.0.3.RELEASE</version>
5      <relativePath/> <!-- lookup parent from repository -->
6  </parent>

 spring cloud依赖

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-dependencies</artifactId>
    <version>Greenwich.SR6</version>
    <type>pom</type>
    <scope>import</scope>
</dependency>

Springboot和Springcloud之间对应关系(截止到2020年) 参考文档见:https://spring.io/projects/spring-cloud#learn

原文地址:https://www.cnblogs.com/lxn0216/p/14097349.html