成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

SpringCloud(第 011 篇)電影Ribbon微服務(wù),脫離Eureka使用配置listOf

newtrek / 3054人閱讀

摘要:第篇電影微服務(wù),脫離使用配置進(jìn)行客戶端負(fù)載均衡調(diào)度一大致介紹通過嘗試脫離服務(wù)治理框架,脫離生態(tài)圈,多帶帶操作客戶端負(fù)載均衡調(diào)度本章節(jié)僅僅只是使用了來測(cè)試客戶端負(fù)載均衡算法二實(shí)現(xiàn)步驟添加引用包模塊客

SpringCloud(第 011 篇)電影Ribbon微服務(wù),脫離Eureka使用配置listOfServers進(jìn)行客戶端負(fù)載均衡調(diào)度

-

一、大致介紹
1、通過嘗試脫離服務(wù)治理框架,脫離 eureka 生態(tài)圈,多帶帶操作客戶端負(fù)載均衡調(diào)度;
2、本章節(jié)僅僅只是使用了 restTemplate.getForObject 來測(cè)試客戶端負(fù)載均衡算法;
二、實(shí)現(xiàn)步驟 2.1 添加 maven 引用包


    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
        
    


2.2 添加應(yīng)用配置文件(springms-consumer-movie-ribbon-properties-without-eurekasrcmainresourcesapplication.yml)
spring:
  application:
    name: springms-consumer-movie-ribbon-properties-without-eureka
server:
  port: 8040
#做負(fù)載均衡的時(shí)候,不需要這個(gè)動(dòng)態(tài)配置的地址
#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:
    # 測(cè)試一
    listOfServers: localhost:7899


#    # 測(cè)試二
#    listOfServers: localhost:7898,localhost:7899,localhost:7900
2.3 添加實(shí)體用戶類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 添加電影微服務(wù)啟動(dòng)類(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微服務(wù),脫離Eureka使用配置listOfServers進(jìn)行客戶端負(fù)載均衡調(diào)度。
 *
 * LoadBalanced:該負(fù)載均衡注解,已經(jīng)整合了 Ribbon;
 *
 * Ribbon 的默認(rèn)負(fù)載均衡的算法為:輪詢;
 *
 * 配置文件優(yōu)先級(jí)最高,Java代碼設(shè)置的配置其次,默認(rèn)的配置優(yōu)先級(jí)最低;
 *
 * @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("【【【【【【 電影微服務(wù)-PropertiesWithoutEureka定制Ribbon 】】】】】】已啟動(dòng).");
    }
}
三、測(cè)試
/****************************************************************************************
 一、電影Ribbon微服務(wù),脫離Eureka使用配置listOfServers進(jìn)行客戶端負(fù)載均衡調(diào)度(正常使用服務(wù)測(cè)試):

 1、application.yml 配置:ribbon.eureka.enabled: false
 2、application.yml 配置:springms-provider-user.ribbon.listOfServers: localhost:7900
 3、啟動(dòng) springms-provider-user 模塊服務(wù),啟動(dòng)3個(gè)端口(7900、7899、7898);
 4、啟動(dòng) springms-provider-user2 模塊服務(wù),啟動(dòng)2個(gè)端口(7997、7996)(直接將用戶微服務(wù) spring.application.name 改了個(gè)名字為 springms-provider-user2 再啟動(dòng)而已);

 5、啟動(dòng) springms-consumer-movie-ribbon-properties-without-eureka 模塊服務(wù);
 6、在瀏覽器輸入地址 http://localhost:8040/movie/1,連續(xù)刷新9次,然后看看 springms-provider-user、springms-provider-user2 的這幾個(gè)端口的服務(wù)打印日志情況,正常情況下只會(huì)有7999該端口才會(huì)有9條用戶信息日志打印出來;

 總結(jié):之所以只有用戶微服務(wù)7999端口打印日志,首先禁用了eureka的使用,如果沒禁用的話,3個(gè)端口按道理都會(huì)打印日志;其次配置 listOfServers 僅僅只選擇了7999一個(gè)端口的微服務(wù);
 ****************************************************************************************/

/****************************************************************************************
 二、電影Ribbon微服務(wù),脫離Eureka使用配置listOfServers進(jìn)行客戶端負(fù)載均衡調(diào)度(負(fù)載均衡調(diào)度):

 1、application.yml 配置:ribbon.eureka.enabled: false
 2、application.yml 配置:springms-provider-user.ribbon.listOfServers: localhost:7898,localhost:7899,localhost:7900
 3、啟動(dòng) springms-provider-user 模塊服務(wù),啟動(dòng)3個(gè)端口(7900、7899、7898);
 4、啟動(dòng) springms-provider-user2 模塊服務(wù),啟動(dòng)2個(gè)端口(7997、7996)(直接將用戶微服務(wù) spring.application.name 改了個(gè)名字為 springms-provider-user2 再啟動(dòng)而已);

 5、啟動(dòng) springms-consumer-movie-ribbon-properties-without-eureka 模塊服務(wù);
 6、在瀏覽器輸入地址 http://localhost:8040/movie/1,連續(xù)刷新9次,然后看看 springms-provider-user、springms-provider-user2 的這幾個(gè)端口的服務(wù)打印日志情況,正常情況下springms-provider-user的3個(gè)端口都會(huì)打印日志,而且是輪詢打??;

 總結(jié):之所以7900、7899、7898三個(gè)端口輪詢打印,是因?yàn)闆]有配置任何調(diào)度算法,默認(rèn)的調(diào)度算法是輪詢,所以3個(gè)端口當(dāng)然會(huì)輪詢打印用戶信息;
 ****************************************************************************************/
四、下載地址

https://gitee.com/ylimhhmily/SpringCloudTutorial.git

SpringCloudTutorial交流QQ群: 235322432

SpringCloudTutorial交流微信群: 微信溝通群二維碼圖片鏈接

歡迎關(guān)注,您的肯定是對(duì)我最大的支持!!!

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/70485.html

相關(guān)文章

  • SpringCloud 006 電影服務(wù)使用 Ribbon 在客戶端進(jìn)行負(fù)載均衡

    摘要:第篇電影微服務(wù),使用在客戶端進(jìn)行負(fù)載均衡一大致介紹是發(fā)布的云中間層服務(wù)開源項(xiàng)目,主要功能是提供客戶端負(fù)載均衡算法。而被注解后,能過用負(fù)載均衡,主要是維護(hù)了一個(gè)被注解的列表,并給列表中的添加攔截器,進(jìn)而交給負(fù)載均衡器去處理。 SpringCloud(第 006 篇)電影微服務(wù),使用 Ribbon 在客戶端進(jìn)行負(fù)載均衡 - 一、大致介紹 1、Ribbon 是 Netflix 發(fā)布的云中間層...

    nodejh 評(píng)論0 收藏0
  • SpringCloud 008 電影服務(wù),使用配置文件配置 Ribbon 在客戶端進(jìn)行負(fù)載

    摘要:第篇電影微服務(wù),使用配置文件配置在客戶端進(jìn)行負(fù)載均衡調(diào)度算法一大致介紹通過配置來設(shè)置客戶端進(jìn)行負(fù)載均衡的調(diào)度算法通過兩種代碼調(diào)用方式來測(cè)試客戶端負(fù)載均衡算法二實(shí)現(xiàn)步驟添加引用包模塊客戶端發(fā)現(xiàn)模塊 SpringCloud(第 008 篇)電影微服務(wù),使用 application.yml 配置文件配置 Ribbon 在客戶端進(jìn)行負(fù)載均衡調(diào)度算法 - 一、大致介紹 1、通過 applicat...

    wangjuntytl 評(píng)論0 收藏0
  • SpringCloud 014 電影 Ribbon 服務(wù)集成 Hystrix 斷路器實(shí)現(xiàn)失

    摘要:當(dāng)服務(wù)宕機(jī)或者不可用時(shí),即請(qǐng)求超時(shí)后會(huì)調(diào)用此方法。添加電影微服務(wù)啟動(dòng)類電影微服務(wù)集成斷路器實(shí)現(xiàn)失敗快速響應(yīng),達(dá)到熔斷效果。 SpringCloud(第 014 篇)電影 Ribbon 微服務(wù)集成 Hystrix 斷路器實(shí)現(xiàn)失敗快速響應(yīng),達(dá)到熔斷效果 - 一、大致介紹 1、Hystrix 斷路器的原理很簡(jiǎn)單,如同電力過載保護(hù)器。它可以實(shí)現(xiàn)快速失敗,如果它在一段時(shí)間內(nèi)偵測(cè)到許多類似的錯(cuò)誤,...

    StonePanda 評(píng)論0 收藏0
  • SpringCloud 007 電影服務(wù),使用定制化 Ribbon 在客戶端進(jìn)行負(fù)載均衡不

    摘要:中的名稱,一定要是服務(wù)中注冊(cè)的名稱。添加這個(gè)的注解,主要是因?yàn)槎x的時(shí)候報(bào)錯(cuò),也就是說明沒有被實(shí)例化。采用隨機(jī)分配的策略。添加訪問層添加電影微服務(wù)啟動(dòng)類電影微服務(wù),使用定制化在客戶端進(jìn)行負(fù)載均衡,使用不同服務(wù)不同配置策略。 SpringCloud(第 007 篇)電影微服務(wù),使用定制化 Ribbon 在客戶端進(jìn)行負(fù)載均衡,使用 RibbonClient 不同服務(wù)不同配置策略 - 一、大...

    scola666 評(píng)論0 收藏0
  • SpringCloud 012 服務(wù)接入 Feign 負(fù)載均衡通過 FeignClient

    摘要:添加電影微服務(wù)啟動(dòng)類電影微服務(wù)接入進(jìn)行客戶端負(fù)載均衡,通過調(diào)用遠(yuǎn)程微服務(wù)。注解表示該電影微服務(wù)已經(jīng)接入模塊。 SpringCloud(第 012 篇)電影微服務(wù)接入 Feign 進(jìn)行客戶端負(fù)載均衡,通過 FeignClient 調(diào)用遠(yuǎn)程 Http 微服務(wù) - 一、大致介紹 1、本章節(jié)主要介紹在 SpringCloud 生態(tài)圈中,使用一個(gè)類似于 Java HTTP 客戶端的工具 Feig...

    Cobub 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<