Ribbon负载均衡策略
Posted 旺仔哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ribbon负载均衡策略相关的知识,希望对你有一定的参考价值。
application.yml 针对某一个微服务设置负载均衡
book-service: #微服务id
ribbon:
NFLoadBalancerRuleClassName: com.netflix.loadbalancer.RandomRule #随机策略
全局设置,全局设置优先级高于application.yml设置
@SpringBootApplication
@EnableEurekaClient
public class MemberServiceApplication
@Bean
@LoadBalanced
public RestTemplate restTemplate()
return new RestTemplate();
@Bean //全局负载均衡策略
public IRule ribbonRule()
return new RoundRobinRule();
public static void main(String[] args)
SpringApplication.run(MemberServiceApplication.class, args);
以上是关于Ribbon负载均衡策略的主要内容,如果未能解决你的问题,请参考以下文章