
Spring Cloud
文章平均质量分 77
工匠解码
庖丁解牛,工匠解码
展开
-
深入Spring Cloud源码设计-基础篇
Spring Cloud是什么? “Spring Cloud provides tools for developers to quickly build some of the common patterns in distributed systems.” Spring Cloud为开发者提供了一套可以用来快速搭建分布式系统中常见模式的工具。提取主干即是Spring Cloud提供了一套工具原创 2017-07-12 20:34:27 · 3528 阅读 · 0 评论 -
spring cloud 入门实践系列 - eureka
eureka 分为三种角色:eureka server,service provider,service consumereureka server 服务端先创建maven工程pom配置 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-pa原创 2017-07-20 10:01:56 · 465 阅读 · 0 评论 -
spring cloud 入门实践系列 - ribbon
Ribbon is a client side IPC library that is battle-tested in cloud. It provides the following features Load balancing Fault tolerance Multiple protocol (HTTP, TCP, UDP) support in an asynchron原创 2017-07-20 18:01:57 · 984 阅读 · 0 评论 -
spring cloud 入门实践系列 - Hystrix
Hystrix is a latency and fault tolerance library designed to isolate points of access to remote systems, services and 3rd party libraries, stop cascading failure and enable resilience in complex distri原创 2017-07-21 15:49:45 · 867 阅读 · 0 评论 -
深入Spring Cloud源码设计-eureka一篇就够
What is eureka ? Eureka is a REST (Representational State Transfer) based service that is primarily used in the AWS cloud for locating services for the purpose of load balancing and failover of middl原创 2017-07-15 16:25:59 · 3686 阅读 · 0 评论 -
spring cloud 入门实践系列 - feign
Spring cloud对feign的定义 http://cloud.spring.io/spring-cloud-static/spring-cloud-netflix/1.3.1.RELEASE/ Feign is a declarative web service client. It makes writing web service clients easier. To use Fe原创 2017-07-24 14:34:40 · 554 阅读 · 0 评论 -
spring cloud 入门实践系列 - zuul
Zuul is the front door for all requests from devices and web sites to the backend of the Netflix streaming application. As an edge service application, Zuul is built to enable dynamic routing, monitori原创 2017-07-26 11:59:19 · 1737 阅读 · 0 评论 -
spring cloud 入门实践系列 - zuul源码理解
从两条线分析zuul的源代码1 启动加载配置ZuulProxyConfiguration2 请求访问zuul服务 http://172.16.153.1:8963/firstapi/firstapi/speak?words=zxlhgggggggg列表内容StandardHostValve invoke方法 (tomcat) 入口DispatcherServlet 类的doDispatch方原创 2017-07-26 12:35:10 · 3591 阅读 · 0 评论