我是靠谱客的博主 光亮棒球,最近开发中收集的这篇文章主要介绍spring cloud 集成 ribbon负载均衡的实例代码,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

本文比较简单集成ribbon,如需要更详细,请查看我的更多博客内容。

首先创建两个服务提供者

在这里插入图片描述

服务一,集成的nacos注册中心,这块随便写一个同名接口

在这里插入图片描述

端口配置8301

在这里插入图片描述

服务二,同名接口内容修改,其他跟上一个服务一大体内容一致

在这里插入图片描述

端口配置成8302

在这里插入图片描述

创建服务消费者

在这里插入图片描述

RibbonConfig.java

package com.example.nacosribbonconsumers.config;

import com.netflix.loadbalancer.IRule;
import com.netflix.loadbalancer.RoundRobinRule;
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
import org.springframework.cloud.netflix.ribbon.RibbonClient;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;

@Configuration
// 如果多个服务可以选择不同的策略
/*@RibbonClients({
        @RibbonClient(name = "other",configuration = OtherConfig.class),
        @RibbonClient(name = "provider",configuration = ProviderConfig.class)
})*/
@RibbonClient(name = "nacos-ribbon-provider")
public class RibbonConfig {

    //定义负载均衡规则
    @Bean
    public IRule ribbonRule(){
        return new RoundRobinRule();

        /**
         * RoundRobinRule:
         *  轮询规则
         *
         * RandomRule:
         *  随机规则
         *
         * WeightedResponseTimeRule:
         *  使用响应时间的平均或者百分比为每个服务分配权重的规则,如果没法收集响应时间信息,会默认使用轮询规则
         *
         * BestAvailableRule:
         *  会先根据断路器过滤掉处于故障的服务,然后选择并发量最小的服务
         *
         * ZoneAvoidanceRule:
         *  根据server所在Zone和其性能,选择服务器,默认规则
         *
         * AvailabilityFilteringRule:
         *  先根据断路器规则过滤掉有问题的服务,然后对剩余的服务按照轮询的策略进行访问
         *
         * RetryRule:
         *  先按照RoundRobinRule规则进行服务获取,如果调用服务失败会在指定时间内进行重试,直到获取到可用的服务。
         */
    }

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

}

RibbonTest.java

package com.example.nacosribbonconsumers.controller;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;

@RestController
public class RibbonTest {

    @Autowired
    private RestTemplate restTemplate;

    @GetMapping(value = "/ribbon-consumers/ribbon-test")
    public String printProviderLog(){
        String result = restTemplate.getForObject("http://nacos-ribbon-provider/ribbon-test", String.class);
        return result;
    }

}

pom包

<dependency>
	<groupId>org.springframework.cloud</groupId>	
	<artifactId>spring-cloud-starter-netflix-ribbon</artifactId>
</dependency>

配置文件

在这里插入图片描述

先启动两个服务提供者,然后在启动服务消费者,浏览访问

在这里插入图片描述
在这里插入图片描述

不断刷新 发现使用的轮询方式交替执行。

到此这篇关于spring cloud 集成 ribbon负载均衡的文章就介绍到这了,更多相关spring cloud ribbon负载均衡内容请搜索靠谱客以前的文章或继续浏览下面的相关文章希望大家以后多多支持靠谱客!

最后

以上就是光亮棒球为你收集整理的spring cloud 集成 ribbon负载均衡的实例代码的全部内容,希望文章能够帮你解决spring cloud 集成 ribbon负载均衡的实例代码所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(96)

评论列表共有 0 条评论

立即
投稿
返回
顶部