简介
中文官网:Spring Cloud中文网-官方文档中文版
Spring Cloud Greenwich.RELEASE 中文文档
SpringCloud的6大常用组件
另见《SpringCloud微服务实战》=> Spring Cloud简介
组件 | 作用 |
Netflix Eureka | 服务发现 |
Netflix Ribbon | 负载均衡 |
Netflix Hystrix | 容错管理组件,实现断路器模式,帮助服务依赖中出现的延迟和为故障提供强大的容错能力。 |
Netflix Feign | 基于Ribbon和 Hystrix的声明式服务调用组件 |
Netflix Zuul | 服务网关 |
Spring Cloud Config | 分布式配置 |
Eureka
其他网址
SpringCloud学习1-服务注册与发现(Eureka) - Ryan.Miao -
Home · Netflix/eureka Wiki · GitHub
https://www.springcloud.cc/spring-cloud-dalston.html#
SpringBoot与SpringCloud版本
其他网址
SpringBoot与SpringCloud版本对应信息
https://start.spring.io/actuator/info
spring-cloud-dependencies 版本列表:
https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-dependencies
spring-boot-starter-parent 版本列表:
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-parent
大版本对应
Spring Cloud | Spring Boot |
Angel版本 | 兼容Spring Boot 1.2.x |
Brixton版本 | 兼容Spring Boot 1.3.x,也兼容Spring Boot 1.4.x |
Camden版本 | 兼容Spring Boot 1.4.x,也兼容Spring Boot 1.5.x |
Dalston版本、Edgware版本 | 兼容Spring Boot 1.5.x,不兼容Spring Boot 2.0.x |
Finchley版本 | 兼容Spring Boot 2.0.x,不兼容Spring Boot 1.5.x |
Greenwich版本 | 兼容Spring Boot 2.1.x,不兼容Spring Boot 2.0.x |
Hoxtonl版本 | 兼容Spring Boot 2.2.x |
重要版本的对应
Spring Cloud | Spring Boot |
Dalston.RC1 | 1.5.2.RELEASE |
Finchley.M9 | 2.0.0.RELEASE |
Finchley.RC1 | 2.0.1.RELEASE |
Finchley.RC2 | 2.0.2.RELEASE |
Finchley.SR4 | 2.0.3.RELEASE~~~2.0.999.RELEASE |
Greenwich.SR5 | 2.1.0.RELEASE~~~2.1.14.RELEASE |
Hoxton.SR4 | 2.2.0.M4 |
其他网址
















