开发者学堂课程【微服务框架 Spring Cloud 快速入门:Spring Cloud功能域和官网资料介绍】学习笔记与课程紧密联系,让用户快速学习知识
课程地址:https://developer.aliyun.com/learning/course/614/detail/9336
Spring Cloud功能域和官网资料介绍
内容介绍
一、作用
二、从何了解
三、如何使用
内容简介
这节课主要讲了Spring Cloud 的作用以及在哪些地方了解,及一些官网资料的相应内容,以及如何去使用 Spring Cloud。
一、作用:
1. Distributed/versioned configuration
(分布式/版本控制配置)
2. Service registration and discovery
(服务注册与发现)
3. Routing
(路由)
4. Service-to-service calls
(服务到服务的调用)
5. Load balancing
(负载均衡配置)
6. Circuit Breakers
(断路器)
7.Distributed messaging
(分布式消息管理)
二、从何了解:
1.官网
http://projects.spring.io/spring-cloud/(里面有对其进行介绍以及对应的版本号,及配置)
2.参考书
(1)https://springcloud.cc/spring-cloud-netflix.htm
里面有 springcloud 对应的一个个组件专门对应的文档,这个主要拿来了解
(2)本次开发 API 说明(上面的链接为英文版,下面的链接为中文版)
http://cloud.spring.io/spring-cloud-static/Dalston.SR1/(里面的东西与官网的主题对应)
https://springcloud.cc/spring-cloud-dalston.html
(3)springcloud 中国社区
http://springcloud.cn/
在里面可以进行相应的学习和探索的历程
(4)springcloud 中文网(官方文档最全)
https://springcloud.cc/
三、如何使用(一共有21种集合体,下面主要列举几个)
1.服务的注册与发现 (Eureka)
2.服务消费者 (rest+ Ribbon)
3.服务消费者 (Feign)
4.断路器 (Hystrix)
5.断路器监控 (Hystrix Dashboard) 路由网关 (Zuul)
6.分布式配置中心 (Spring Cloud Config)
7.消息总线 (Spring Cloud Bus)
8.服务链路追踪 (Spring Cloud Sleuth)