
Spring Cloud
spring cloud
Soulballad
这个作者很懒,什么都没留下…
展开
-
6.SpringCloud学习(六)——Spring Cloud Bus 消息总线
1.简介1.1 概述Spring Cloud Bus links nodes of a distributed system with a lightweight message broker. This can then be used to broadcast state changes (e.g. configuration changes) or other management instructions. AMQP and Kafka broker implementations are i原创 2020-08-23 12:50:03 · 318 阅读 · 0 评论 -
5.SpringCloud学习(五)——Spring Cloud Config 配置中心
1.简介1.1 概述Spring Cloud Config provides server and client-side support for externalized configuration in a distributed system. With the Config Server you have a central place to manage external properties for applications across all environments. The con原创 2020-08-23 12:46:52 · 312 阅读 · 0 评论 -
4.SpringCloud学习(四)——Spring Cloud OpenFeign 服务调用
1.简介1.1 概述Feign is a declarative web service client. It makes writing web service clients easier. To use Feign create an interface and annotate it. It has pluggable annotation support including Feign annotations and JAX-RS annotations. Feign also suppor原创 2020-08-23 12:44:23 · 396 阅读 · 0 评论 -
3.SpringCloud学习(三)——Spring Cloud Hystrix 服务降级
1.简介1.1 概述In a distributed environment, inevitably some of the many service dependencies will fail. Hystrix is a library that helps you control the interactions between these distributed services by adding latency tolerance and fault tolerance logic. Hy原创 2020-08-23 12:41:42 · 253 阅读 · 0 评论 -
2.SpringCloud学习(二)——Spring Cloud Eureka 服务注册中心
1.简介1.1 概述Service Discovery is one of the key tenets of a microservice-based architecture. Trying to hand-configure each client or some form of convention can be difficult to do and can be brittle. Eureka is the Netflix Service Discovery Server and Clie原创 2020-08-16 21:22:25 · 358 阅读 · 0 评论 -
1.SpringCloud学习(一)——Spring Cloud Ribbon 实现负载均衡
1.简介1.1 概述Ribbon is a client-side load balancer that gives you a lot of control over the behavior of HTTP and TCP clients. Feign already uses Ribbon, so, if you use @FeignClient, this section also applies.A central concept in Ribbon is that of the name原创 2020-08-16 21:18:53 · 252 阅读 · 0 评论