学习ribbon,进来看看吧

 

ribbon是什么

    Spring Cloud Ribbon是基于Netflix Ribbon实现的一套客户端 负载均衡的工具。

    简单的说,Ribbon是Neflix发布的开源项目,主要功能是提供客户端的软件负载均衡算法和服务调用。Ribbon客户端组件提供一系列完善的配置项如连接超时,重试等。简单的说,就是在配置文件中列出Load Balancer(简称LB)后面所有的机器,Ribbon会自动的帮助你基于某种规则(如简单轮询,随机连接等)去连接这些机器。我们很容易使用Ribbon实现自定义的负载均衡算法。

引包(需要将项目注册到注册中心,任一注册中心都可)


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

restTemplate

@Configuration
public class ApplicationContextConfig
{
    @Bean
    @LoadBalanced
    public RestTemplate getRestTemplate()
    {
        return new RestTemplate();
    }
}

此时,用restTemplate使用服务名调用后台接口,就可以使用ribbon啦!

修改ribbon的负载算法

在其他包下创建类

import com.netflix.loadbalancer.IRule;
import com.netflix.loadbalancer.RandomRule;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class MySelfRule
{
    @Bean
    public IRule myRule()
    {
        return new RandomRule();//定义为随机
    }
}

在启动类上加上:

@RibbonClient(name = "CLOUD-SERVICE",configuration=MySelfRule.class)

 

 

你可能感兴趣的:(spring,boot,cloud,spring,ribbon)