转载请标明出处:
blog.csdn.net/forezp/arti…
本文出自方志朋的博客

在上一篇文章,讲了服务的注册和发现。在服务架构中,业务都会被拆分成一个独立的服务,服务与服务的通讯是基于http restful的。Spring cloud有两种调用方式,一种是ribbon+restTemplate,另一种是feign。在这一篇文章首先讲解下基于ribbon+rest。

一、ribbon简介

Ribbon is a client side load balancer which gives you a lot of control over the behaviour of HTTP and TCP clients. Feign already uses Ribbon, so if you are using @FeignClient then this section also applies.

-----摘自官网

ribbon是一个负载均衡客户端,可以很好的控制htt和tcp的一些行为。Feign也用到ribbon,当你使用@ FeignClient,ribbon自动被应用。

ribbon 已经默认实现了这些配置bean:

  • IClientConfig ribbonClientConfig: DefaultClientConfigImpl

  • IRule ribbonRule: ZoneAvoidanceRule

  • IPing ribbonPing: NoOpPing

  • ServerList ribbonServerList: ConfigurationBasedServerList

  • ServerListFilter ribbonServerListFilter: ZonePreferenceServerListFilter

  • ILoadBalancer ribbonLoadBalancer: ZoneAwareLoadBalancer

二、准备工作

基于上一节的工程,启动eureka-server 工程;启动service-hi工程,它的端口为8762;将service-hi的配置文件的端口改为8763,并启动它,这时你会发现:service-hi在eureka-server注册了2个,这就相当于一个小的集群。访问localhost:8761如图所示:

Paste_Image.png

三、建一个服务消费者

重新新建一个spring-boot工程,取名为:service-ribbon;
它的pom.xml文件如下:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><groupId>com.forezp</groupId><artifactId>service-ribbon</artifactId><version>0.0.1-SNAPSHOT</version><packaging>jar</packaging><name>service-ribbon</name><description>Demo project for Spring Boot</description><parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>1.5.2.RELEASE</version><relativePath/> <!-- lookup parent from repository --></parent><properties><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding><project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding><java.version>1.8</java.version></properties><dependencies><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-eureka</artifactId></dependency><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-ribbon</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope></dependency></dependencies><dependencyManagement><dependencies><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-dependencies</artifactId><version>Dalston.RC1</version><type>pom</type><scope>import</scope></dependency></dependencies></dependencyManagement><build><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId></plugin></plugins></build><repositories><repository><id>spring-milestones</id><name>Spring Milestones</name><url>https://repo.spring.io/milestone</url><snapshots><enabled>false</enabled></snapshots></repository></repositories></project>复制代码

向服务注册中心注册一个新的服务,这时service-ribbon既是服务提供者,也是服务消费者。配置文件application.yml如下:

eureka:client:serviceUrl:defaultZone: http://localhost:8761/eureka/
server:port: 8764
spring:application:name: service-ribbon复制代码

在工程的启动类中,通过@EnableDiscoveryClient向服务中心注册;并且注册了一个bean: restTemplate;通过@ LoadBalanced注册表明,这个restRemplate是负载均衡的。

@SpringBootApplication
@EnableDiscoveryClient
public class ServiceRibbonApplication {public static void main(String[] args) {SpringApplication.run(ServiceRibbonApplication.class, args);}@Bean@LoadBalancedRestTemplate restTemplate() {return new RestTemplate();}}复制代码

这时我们需要测试下,建一个service类:

@Service
public class HelloService {@AutowiredRestTemplate restTemplate;public String hiService(String name) {return restTemplate.getForObject("http://SERVICE-HI/hi?name="+name,String.class);}}复制代码

通过restTemplate.getForObject方法,service-ribbon 就可以调用service-hi的方法了。并且在调用的工程中并之需要写服务的名,而不是具体的ip.

写一个controller:


/*** Created by fangzhipeng on 2017/4/6.*/
@RestController
public class HelloControler {@AutowiredHelloService helloService;@RequestMapping(value = "/hi")public String hi(@RequestParam String name){return helloService.hiService(name);}}复制代码

访问http://localhost:8764/hi?name=forezp,浏览器交替显示:

hi forezp,i am from port:8762

hi forezp,i am from port:8763

这说明当我们通过调用restTemplate.getForObject("http://SERVICE-HI/hi?name="+name,String.class),获取service-hi的方法时,已经做了负载均衡,访问了不同的端口的服务。

四、此时的架构

此时架构图.png
  • 一个服务注册中心,eureka server,端口为8761
  • service-hi工程跑了两个副本,端口分别为8762,8763,分别向服务注册中心注册
  • sercvice-ribbon端口为8764,向服务注册中心注册
  • 当sercvice-ribbon通过restTemplate调用service-hi的hi接口时,因为用ribbon进行了负载均衡,会轮流的调用service-hi:8762和8763 两个端口的hi接口;

源码下载:github.com/forezp/Spri…

五、参考资料

本文参考了以下:

spring-cloud-ribbon

springcloud ribbon with eureka

服务消费者

优秀文章推荐:

  • 史上最简单的 SpringCloud 教程 | 终章
  • 史上最简单的 SpringCloud 教程 | 第一篇: 服务的注册与发现(Eureka)
  • 史上最简单的SpringCloud教程 | 第七篇: 高可用的分布式配置中心(Spring Cloud Config)

SpringCloud 教程 | 第二篇: 服务消费者(rest+ribbon)相关推荐

  1. 史上最简单的SpringCloud教程 | 第二篇: 服务消费者(rest+ribbon)

    转载请标明出处: https://www.fangzhipeng.com/springcloud/2017/07/12/sc02-rest-ribbon/ 本文出自方志朋的博客 最新Finchley版 ...

  2. 史上最简单的SpringCloud教程 | 第二篇: 服务消费者(rest+ribbon)(Finchley版本)

    转载请标明出处: 原文首发于:https://www.fangzhipeng.com/springcloud/2018/08/30/sc-f2-ribbon/ 本文出自方志朋的博客 在上一篇文章,讲了 ...

  3. SpringCloud教程 | 第二篇: 服务消费者(rest+ribbon)

    在上一篇文章,讲了服务的注册和发现.在服务架构中,业务都会被拆分成一个独立的服务,服务与服务的通讯是基于http restful的.spring cloud有两种调用方式,一种是ribbon+rest ...

  4. 最简单的SpringCloud教程 | 第二篇: 服务消费者(rest+ribbon)(Finchley版本)

    在上一篇文章,讲了服务的注册和发现.在微服务架构中,业务都会被拆分成一个独立的服务,服务与服务的通讯是基于http restful的.Spring cloud有两种服务调用方式,一种是ribbon+r ...

  5. SpringCloud |第二篇: 服务消费者(Ribbon)

    2019独角兽企业重金招聘Python工程师标准>>> 一.Ribbon简介 Ribbon是Netflix发布的开源项目,主要功能是提供客户端的软件负载均衡算法,将Netflix的中 ...

  6. 第二篇 服务消费者(rest ribbon)(Finchley版本)V2.0_dev

    前言: 在微服务架构中,业务都会被拆分成一个独立的服务,服务与服务的通讯是基于http restful的. Spring cloud有两种服务调用方式: 第一种 ribbon+restTemplate ...

  7. 史上最简单的SpringCloud教程 | 第九篇: 服务链路追踪(Spring Cloud Sleuth)(Finchley版本)

    转载请标明出处: http://blog.csdn.net/forezp/article/details/81041078 本文出自方志朋的博客 个人博客纯净版:https://www.fangzhi ...

  8. 史上最简单的SpringCloud教程 | 第九篇: 服务链路追踪(Spring Cloud Sleuth)

    转:https://blog.csdn.net/forezp/article/details/70162074 这篇文章主要讲述服务追踪组件zipkin,Spring Cloud Sleuth集成了z ...

  9. SpringCloud教程 | 第九篇: 服务链路追踪(Spring Cloud Sleuth)(Finchley版本)

    转载请标明出处:  http://blog.csdn.net/forezp/article/details/81041078  本文出自方志朋的博客 这篇文章主要讲述服务追踪组件zipkin,Spri ...

最新文章

  1. android实现长截屏,Android实现全屏截图或长截屏功能
  2. 为什么你没有选择xamarin?
  3. 给正在努力的您几条建议(附开源代码)
  4. 操作系统(13)-操作系统中的死锁及其预防、避免、检测与解除
  5. linux cat grep+head/tail
  6. 从入门到入土:Python实现爬取某站视频|根据视频编号|支持通过视频名称和创作者名称寻找编号|以及python moviepy合并音频视频
  7. 阿里云CentOS 7.4安装Zabbix 4.2
  8. python系统学习_【Python系统学习】基础篇
  9. (翻译)禁用按钮不应变灰的原因
  10. matlab powergui的作用,powergui模块作用
  11. centos7挂载大于10T及以上硬盘
  12. 快速查看网页元素的CSS样式
  13. 基于Auto.js的淘宝抢购助手+京东双十一活动助手。亲测运行正常!
  14. kali linux CC搭建教程,kali linux初次安装配置
  15. Go语言核心之美-必读
  16. html班级管理,谈小学班级管理
  17. 抖音为什么这么火?抖音用户暴涨的秘密在哪?
  18. 分享6款好用并免费的远程管理工具
  19. lightning接口linux驱动,iPhone 8惊喜曝光:Lightning接口换USB Type-C
  20. 毕业设计 基于单片机的数字出租车计价器

热门文章

  1. 在C#中SendMessage和PostMessage的参数传递
  2. Docker 容器的网络连接
  3. mysql,mairadb启动脚本
  4. Elasticsearch Windows 环境搭建
  5. 为什么只有很少的人听说过西工大这个名字?
  6. 用iptables做IP的静态映射
  7. 比特币耶稣Roger Ver赠送中国著名经济学家巴曙松1枚比特币现金BCH
  8. Youtube-dl调用外部Aria2多线程加速下载
  9. mysql之 表数据存放路径非datadir目录
  10. hdu5491 The Next 模拟