摘要:第篇電影微服務,脫離使用配置進行客戶端負載均衡調度一大致介紹通過嘗試脫離服務治理框架,脫離生態圈,多帶帶操作客戶端負載均衡調度本章節僅僅只是使用了來測試客戶端負載均衡算法二實現步驟添加引用包模塊客
SpringCloud(第 011 篇)電影Ribbon微服務,脫離Eureka使用配置listOfServers進行客戶端負載均衡調度
-
一、大致介紹1、通過嘗試脫離服務治理框架,脫離 eureka 生態圈,多帶帶操作客戶端負載均衡調度; 2、本章節僅僅只是使用了 restTemplate.getForObject 來測試客戶端負載均衡算法;二、實現步驟 2.1 添加 maven 引用包
2.2 添加應用配置文件(springms-consumer-movie-ribbon-properties-without-eurekasrcmainresourcesapplication.yml)4.0.0 springms-consumer-movie-ribbon-properties-without-eureka 1.0-SNAPSHOT jar com.springms.cloud springms-spring-cloud 1.0-SNAPSHOT org.springframework.boot spring-boot-starter-web org.springframework.cloud spring-cloud-starter-eureka org.springframework.boot spring-boot-starter-actuator
spring: application: name: springms-consumer-movie-ribbon-properties-without-eureka server: port: 8040 #做負載均衡的時候,不需要這個動態配置的地址 #user: # userServicePath: http://localhost:7900/simple/ eureka: client: healthcheck: enabled: true serviceUrl: defaultZone: http://admin:admin@localhost:8761/eureka instance: prefer-ip-address: true instance-id: ${spring.application.name}:${spring.cloud.client.ipAddress}:${spring.application.instance_id:${server.port}} ribbon: eureka: enabled: false # 禁用 eureka springms-provider-user: ribbon: # 測試一 listOfServers: localhost:7899 # # 測試二 # listOfServers: localhost:7898,localhost:7899,localhost:79002.3 添加實體用戶類User(springms-consumer-movie-ribbon-properties-without-eurekasrcmainjavacomspringmscloudentityUser.java)
package com.springms.cloud.entity; import java.math.BigDecimal; public class User { private Long id; private String username; private String name; private Short age; private BigDecimal balance; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getUsername() { return this.username; } public void setUsername(String username) { this.username = username; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Short getAge() { return this.age; } public void setAge(Short age) { this.age = age; } public BigDecimal getBalance() { return this.balance; } public void setBalance(BigDecimal balance) { this.balance = balance; } }2.4 添加Web訪問層Controller(springms-consumer-movie-ribbon-propertiessrcmainjavacomspringmscloudcontrollerMovieRibbonPropertiesController.java)
package com.springms.cloud.controller; import com.springms.cloud.entity.User; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.cloud.client.ServiceInstance; import org.springframework.cloud.client.loadbalancer.LoadBalancerClient; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.client.RestTemplate; @RestController public class MoviePropertiesWithoutEurekaController { @Autowired private RestTemplate restTemplate; @Autowired private LoadBalancerClient loadBalancerClient; @GetMapping("/movie/{id}") public User findById(@PathVariable Long id) { // http://localhost:7900/simple/ // VIP virtual IP // HAProxy Heartbeat ServiceInstance serviceInstance = this.loadBalancerClient.choose("springms-provider-user"); System.out.println(">>>>>" + " " + serviceInstance.getServiceId() + ":" + serviceInstance.getHost() + ":" + serviceInstance.getPort()); return this.restTemplate.getForObject("http://springms-provider-user/simple/" + id, User.class); } }2.5 添加電影微服務啟動類(springms-consumer-movie-ribbon-properties-without-eurekasrcmainjavacomspringmscloudMsConsumerMoviePropertiesWithoutEurekaApplication.java)
package com.springms.cloud; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.loadbalancer.LoadBalanced; import org.springframework.cloud.netflix.eureka.EnableEurekaClient; import org.springframework.context.annotation.Bean; import org.springframework.web.client.RestTemplate; /** * 電影Ribbon微服務,脫離Eureka使用配置listOfServers進行客戶端負載均衡調度。 * * LoadBalanced:該負載均衡注解,已經整合了 Ribbon; * * Ribbon 的默認負載均衡的算法為:輪詢; * * 配置文件優先級最高,Java代碼設置的配置其次,默認的配置優先級最低; * * @author hmilyylimh * * @version 0.0.1 * * @date 2017/9/18 * */ @SpringBootApplication @EnableEurekaClient public class MsConsumerMoviePropertiesWithoutEurekaApplication { @Bean @LoadBalanced public RestTemplate restTemplate() { return new RestTemplate(); } public static void main(String[] args) { SpringApplication.run(MsConsumerMoviePropertiesWithoutEurekaApplication.class, args); System.out.println("【【【【【【 電影微服務-PropertiesWithoutEureka定制Ribbon 】】】】】】已啟動."); } }三、測試
/**************************************************************************************** 一、電影Ribbon微服務,脫離Eureka使用配置listOfServers進行客戶端負載均衡調度(正常使用服務測試): 1、application.yml 配置:ribbon.eureka.enabled: false 2、application.yml 配置:springms-provider-user.ribbon.listOfServers: localhost:7900 3、啟動 springms-provider-user 模塊服務,啟動3個端口(7900、7899、7898); 4、啟動 springms-provider-user2 模塊服務,啟動2個端口(7997、7996)(直接將用戶微服務 spring.application.name 改了個名字為 springms-provider-user2 再啟動而已); 5、啟動 springms-consumer-movie-ribbon-properties-without-eureka 模塊服務; 6、在瀏覽器輸入地址 http://localhost:8040/movie/1,連續刷新9次,然后看看 springms-provider-user、springms-provider-user2 的這幾個端口的服務打印日志情況,正常情況下只會有7999該端口才會有9條用戶信息日志打印出來; 總結:之所以只有用戶微服務7999端口打印日志,首先禁用了eureka的使用,如果沒禁用的話,3個端口按道理都會打印日志;其次配置 listOfServers 僅僅只選擇了7999一個端口的微服務; ****************************************************************************************/ /**************************************************************************************** 二、電影Ribbon微服務,脫離Eureka使用配置listOfServers進行客戶端負載均衡調度(負載均衡調度): 1、application.yml 配置:ribbon.eureka.enabled: false 2、application.yml 配置:springms-provider-user.ribbon.listOfServers: localhost:7898,localhost:7899,localhost:7900 3、啟動 springms-provider-user 模塊服務,啟動3個端口(7900、7899、7898); 4、啟動 springms-provider-user2 模塊服務,啟動2個端口(7997、7996)(直接將用戶微服務 spring.application.name 改了個名字為 springms-provider-user2 再啟動而已); 5、啟動 springms-consumer-movie-ribbon-properties-without-eureka 模塊服務; 6、在瀏覽器輸入地址 http://localhost:8040/movie/1,連續刷新9次,然后看看 springms-provider-user、springms-provider-user2 的這幾個端口的服務打印日志情況,正常情況下springms-provider-user的3個端口都會打印日志,而且是輪詢打印; 總結:之所以7900、7899、7898三個端口輪詢打印,是因為沒有配置任何調度算法,默認的調度算法是輪詢,所以3個端口當然會輪詢打印用戶信息; ****************************************************************************************/四、下載地址
https://gitee.com/ylimhhmily/SpringCloudTutorial.git
SpringCloudTutorial交流QQ群: 235322432
SpringCloudTutorial交流微信群: 微信溝通群二維碼圖片鏈接
歡迎關注,您的肯定是對我最大的支持!!!
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/70485.html
摘要:第篇電影微服務,使用在客戶端進行負載均衡一大致介紹是發布的云中間層服務開源項目,主要功能是提供客戶端負載均衡算法。而被注解后,能過用負載均衡,主要是維護了一個被注解的列表,并給列表中的添加攔截器,進而交給負載均衡器去處理。 SpringCloud(第 006 篇)電影微服務,使用 Ribbon 在客戶端進行負載均衡 - 一、大致介紹 1、Ribbon 是 Netflix 發布的云中間層...
摘要:第篇電影微服務,使用配置文件配置在客戶端進行負載均衡調度算法一大致介紹通過配置來設置客戶端進行負載均衡的調度算法通過兩種代碼調用方式來測試客戶端負載均衡算法二實現步驟添加引用包模塊客戶端發現模塊 SpringCloud(第 008 篇)電影微服務,使用 application.yml 配置文件配置 Ribbon 在客戶端進行負載均衡調度算法 - 一、大致介紹 1、通過 applicat...
摘要:當服務宕機或者不可用時,即請求超時后會調用此方法。添加電影微服務啟動類電影微服務集成斷路器實現失敗快速響應,達到熔斷效果。 SpringCloud(第 014 篇)電影 Ribbon 微服務集成 Hystrix 斷路器實現失敗快速響應,達到熔斷效果 - 一、大致介紹 1、Hystrix 斷路器的原理很簡單,如同電力過載保護器。它可以實現快速失敗,如果它在一段時間內偵測到許多類似的錯誤,...
摘要:中的名稱,一定要是服務中注冊的名稱。添加這個的注解,主要是因為定義的時候報錯,也就是說明沒有被實例化。采用隨機分配的策略。添加訪問層添加電影微服務啟動類電影微服務,使用定制化在客戶端進行負載均衡,使用不同服務不同配置策略。 SpringCloud(第 007 篇)電影微服務,使用定制化 Ribbon 在客戶端進行負載均衡,使用 RibbonClient 不同服務不同配置策略 - 一、大...
摘要:添加電影微服務啟動類電影微服務接入進行客戶端負載均衡,通過調用遠程微服務。注解表示該電影微服務已經接入模塊。 SpringCloud(第 012 篇)電影微服務接入 Feign 進行客戶端負載均衡,通過 FeignClient 調用遠程 Http 微服務 - 一、大致介紹 1、本章節主要介紹在 SpringCloud 生態圈中,使用一個類似于 Java HTTP 客戶端的工具 Feig...
閱讀 1292·2023-04-26 01:03
閱讀 1907·2021-11-23 09:51
閱讀 3299·2021-11-22 15:24
閱讀 2663·2021-09-22 15:18
閱讀 1010·2019-08-30 15:55
閱讀 3458·2019-08-30 15:54
閱讀 2234·2019-08-30 15:53
閱讀 2387·2019-08-30 15:44