资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

SpringCloud中怎么使用Ribbon实现负载均衡

这篇文章给大家介绍Spring Cloud中怎么使用Ribbon实现负载均衡,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

成都创新互联作为成都网站建设公司,专注重庆网站建设、网站设计,有关成都企业网站建设方案、改版、费用等问题,行业涉及成都混凝土搅拌站等多个领域,已为上千家企业服务,得到了客户的尊重与认可。

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是负载均衡客户端,可以很好的控制HTTP和TCP客户端的行为。 Feign已经集成了Ribbon。

Spring Cloud Netflix默认为ribbon(BeanType beanName:ClassName)提供以下bean:

  • IClientConfig ribbonClientConfig: DefaultClientConfigImpl

  • IRule ribbonRule: ZoneAvoidanceRule

  • IPing ribbonPing: NoOpPing

  • ServerList ribbonServerList: ConfigurationBasedServerList

  • ServerListFilter ribbonServerListFilter: ZonePreferenceServerListFilter

  • ILoadBalancer ribbonLoadBalancer: ZoneAwareLoadBalancer

准备工作

这篇文章基于上一篇文章项目,启动eureka-server项目;启动eureka-client项目,端口为8040; 将eureka-client的配置文件端口改为8041,并启动,同一个项目修改端口号,启动多个实例,只需要在IDEA中勾选Allow parallel run

Spring Cloud中怎么使用Ribbon实现负载均衡

此时你会发现注册服务中注册了两个eureka-client实例,相当于起了2个节点的集群。 访问http://localhost:9090:

Spring Cloud中怎么使用Ribbon实现负载均衡

新建一个服务消费者

使用Spring Initializr新建一个项目,取名为ribbon-service, 在Spring Cloud Discovery中勾选Eureka Discovery Client,在Spring Cloud Routing中勾选Ribbon,在Web中勾选Spring Web: Spring Cloud中怎么使用Ribbon实现负载均衡

Spring Cloud中怎么使用Ribbon实现负载均衡

Spring Cloud中怎么使用Ribbon实现负载均衡

创建成功后,项目pom.xml如下:



    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.1.9.RELEASE
         
    
    com.noodles.mars
    ribbon-service
    0.0.1-SNAPSHOT
    ribbon-service
    Ribbon Service

    
        1.8
        Greenwich.SR3
    

    
        
            org.springframework.cloud
            spring-cloud-starter-netflix-eureka-client
        
        
            org.springframework.cloud
            spring-cloud-starter-netflix-ribbon
        

        
            org.springframework.boot
            spring-boot-starter-web
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    

    
        
            
                org.springframework.cloud
                spring-cloud-dependencies
                ${spring-cloud.version}
                pom
                import
            
        
    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    

ribbon-service配置服务中心地址、应用名、端口,配置文件内容:

server:
  port: 8050

spring:
  application:
    name: ribbon-service

eureka:
  client:
    service-url: 
      defaultZone: http://localhost:9090/eureka/

在项目启动类上注解@EnableDiscoveryClient, 开启向服务中心注册;定义一个 RestTemplate Bean, 并注解@LoadBalanced开启负载均衡功能:

@EnableEurekaClient
@SpringBootApplication
public class RibbonServiceApplication {

    public static void main(String[] args) {
        SpringApplication.run(RibbonServiceApplication.class, args);
    }

    @Bean
    @LoadBalanced
    public RestTemplate restTemplate() {
        return new RestTemplate();
    }

}

写一个controller, 通过之前定义的RestTemplate来消费eureka-client服务的/hello接口,url中使用应用名,ribbon会根据应用名来选择具体的服务实例,根据服务实例在请求的时候会用具体的url替换掉服务名:

@RestController
public class HelloController {

    private final RestTemplate restTemplate;

    @Autowired
    public HelloController(RestTemplate restTemplate) {
        this.restTemplate = restTemplate;
    }

    @GetMapping("/hello")
    public String hello(@RequestParam("name") String name) {
        return restTemplate.getForObject("http://HELLO-ERUEKA-CLIENT/hello?name=" + name, String.class);
    }
}

在浏览器上多次访问 http://localhost:8050/hello?name=Mars :

Hello, My name is Mars, I'm from port: 8040
Hello, My name is Mars, I'm from port: 8041

关于Spring Cloud中怎么使用Ribbon实现负载均衡就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。


文章名称:SpringCloud中怎么使用Ribbon实现负载均衡
文章URL:http://cdkjz.cn/article/ipigci.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

大客户专线   成都:13518219792   座机:028-86922220