微服务之SpringCloud架构第二篇——服务调用及客户端负载均衡器Ribbon

 

2018年09月07日 12:10:59 lee_howard 阅读数:80

 版权声明:本文为博主原创文章,转载请注明出处,不得用于商业用途。 https://blog.csdn.net/pilihaotian/article/details/82493541

1、Ribbon介绍

Ribbon是一个客户端负载均衡器,它可以很好地控制HTTP和TCP客户端的行为。Ribbon提供基于规则的负载平衡,它支持循环,响应时间加权和开箱即用的随机负载平衡机制,并可以通过插入不同的规则进一步扩展。其中ribbon-eureka中提供了与基于Eureka的服务发现的集成。

2、实例

1、创建多实例服务提供者

在第一篇的基础上,再创建一个客户端eurekaClient,端口号改为8763,注册到注册中心。

启动服务后的结果如下,一个应用2个实例,端口不一样:

2、创建一个服务消费者

新建springboot项目,serviceribbon,端口为8764,并注册到注册中心上,yml配置文件如下:

 
  1. eureka:

  2. client:

  3. serviceUrl:

  4. defaultZone: http://localhost:8761/eureka/

  5. server:

  6. port: 8764

  7. spring:

  8. application:

  9. name: service-ribbon

导入相关依赖,pom文件如下:

 
  1. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

  2. 4.0.0

  3.  
  4. com.example

  5. serviceribbon

  6. 0.0.1-SNAPSHOT

  7. jar

  8.  
  9. serviceribbon

  10. Demo project for Spring Boot

  11.  
  12. org.springframework.boot

  13. spring-boot-starter-parent

  14. 2.0.4.RELEASE

  15.  
  16. UTF-8

  17. UTF-8

  18. 1.8

  19. Finchley.SR1

  20.  
  21. org.springframework.cloud

  22. spring-cloud-starter-netflix-eureka-server

  23. org.springframework.boot

  24. spring-boot-starter-web

  25. org.springframework.cloud

  26. spring-cloud-starter-ribbon

  27. org.springframework.boot

  28. spring-boot-starter-test

  29. test

  30.  
  31. org.springframework.cloud

  32. spring-cloud-dependencies

  33. ${spring-cloud.version}

  34. pom

  35. import

  36.  
  37. org.springframework.boot

  38. spring-boot-maven-plugin

  39.  
  40.  

在启动类内创建RestTemplate,注入Bean 和LoadBalance :

 
  1. @SpringBootApplication

  2. @EnableDiscoveryClient

  3. public class ServiceribbonApplication {

  4.  
  5. public static void main(String[] args) {

  6. SpringApplication.run(ServiceribbonApplication.class, args);

  7. }

  8. @Bean

  9. @LoadBalanced

  10. RestTemplate restTemplate(){

  11. return new RestTemplate();

  12. }

  13. }

新建service,调用服务提供者提供的服务:

 
  1. @Service

  2. public class HiService {

  3. @Autowired

  4. RestTemplate restTemplate;

  5. public String hiService(String name){

  6. return restTemplate.getForObject("http://DemoApp/sayHi?name="+name,String.class);

  7. }

  8. }

其中DemoApp是服务提供者注册在eureka中的服务名称。

新建controller测试:

 
  1. @RestController

  2. public class HiController {

  3. @Autowired

  4. HiService hiService;

  5. @RequestMapping("/sayHi")

  6. public String sayHi(@RequestParam String name){

  7. return hiService.hiService(name);

  8. }

  9. }

访问http://localhost:8764/sayHi?name=张三

结果为:

再次刷新,结果为:

多次刷新,发现,端口号在8762和8763之间不断交替变化,说明ribbon负载均衡器发挥了负载的作用。

你可能感兴趣的:(微服务之SpringCloud架构第二篇——服务调用及客户端负载均衡器Ribbon)