这篇文章主要介绍“spring cloud集成ribbon负载均衡怎么实现”,在日常操作中,相信很多人在spring cloud集成ribbon负载均衡怎么实现问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法
这篇文章主要介绍“spring cloud集成ribbon负载均衡怎么实现”,在日常操作中,相信很多人在spring cloud集成ribbon负载均衡怎么实现问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”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// 如果多个服务可以选择不同的策略@RibbonClient(name = "nacos-ribbon-provider")public class RibbonConfig { //定义负载均衡规则 @Bean public IRule ribbonRule(){ return new 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;@RestControllerpublic 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负载均衡怎么实现”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!
--结束END--
本文标题: spring cloud集成ribbon负载均衡怎么实现
本文链接: https://lsjlt.com/news/300962.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0