欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

springcloud注冊hostname或者ip的示例分析

這篇文章將為大家詳細(xì)講解有關(guān)springcloud注冊hostname或者ip的示例分析,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

創(chuàng)新互聯(lián)是專業(yè)的綏江網(wǎng)站建設(shè)公司,綏江接單;提供做網(wǎng)站、成都網(wǎng)站建設(shè),網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進行綏江網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!

SpringCloud簡介

Spring cloud是一個基于Spring Boot實現(xiàn)的服務(wù)治理工具包,在微服務(wù)架構(gòu)中用于管理和協(xié)調(diào)服務(wù)的

微服務(wù):就是把一個單體項目,拆分為多個微服務(wù),每個微服務(wù)可以獨立技術(shù)選型,獨立開發(fā),獨立部署,獨立運維.并且多個服務(wù)相互協(xié)調(diào),相互配合,最終完成用戶的價值.

Spring Cloud是一系列框架的有序集合。它利用Spring Boot的開發(fā)便利性巧妙地簡化了分布式系統(tǒng)基礎(chǔ)設(shè)施的開發(fā),如服務(wù)發(fā)現(xiàn)注冊、配置中心、消息總線、負(fù)載均衡、斷路器、數(shù)據(jù)監(jiān)控等,都可以用Spring Boot的開發(fā)風(fēng)格做到一鍵啟動和部署

springcloud注冊hostname或者ip的示例分析

五大重要組件

服務(wù)發(fā)現(xiàn)——Netflix Eureka
客服端負(fù)載均衡——Netflix Ribbon/Feign
服務(wù)網(wǎng)關(guān)——Netflix Zuul
斷路器——Netflix Hystrix
分布式配置——Spring Cloud Config

默認(rèn)情況下,Eureka 使用 hostname 進行服務(wù)注冊,以及服務(wù)信息的顯示, 如果我們相擁 IP 地址的方式,可以在配置文件中配置 eureka.instance.prefer-ip-address=true

idea中ctrl+鼠標(biāo)左鍵,點擊 eureka.instance.prefer-ip-address=true 進入查看 EurekaInstanceConfigBean 會引入這個屬性

EurekaInstanceConfigBean
/**
 * Flag to say that, when guessing a hostname, the IP address of the server should be
 * used in prference to the hostname reported by the OS.
 */
 private boolean preferIpAddress = false;

preferIpAddress: 首選IP地址。 默認(rèn)false,也就是默認(rèn)不注冊ip.

肯定有地方做了判斷,在 EurekaInstanceConfigBean 搜索preferIpAddress,發(fā)現(xiàn)了 getHostName 方法, 此方法用于返回得到的hostname或者ip

@Override
public String getHostName(boolean refresh) {
 if (refresh && !this.hostInfo.override) {
  this.ipAddress = this.hostInfo.getIpAddress();
  this.hostname = this.hostInfo.getHostname();
 }
 return this.preferIpAddress ? this.ipAddress : this.hostname;
}

1.首先會判斷: this.hostInfo.override 屬性. 此屬性在setIpAddress方法里設(shè)置。setIpAddress方法對應(yīng)的是 eureka.instance.ip-address= 這個配置屬性。

也就是說: eureka.instance.ip-address 和 eureka.instance.prefer-ip-address = true 同時設(shè)置是優(yōu)先取 eureka.instance.ip-address 的配置

public void setIpAddress(String ipAddress) {
 this.ipAddress = ipAddress;
 this.hostInfo.override = true;
 }

2.preferIpAddress為false返回hostname屬性,為true返回ipAddress屬性 在EurekaInstanceConfigBean搜索hostname 會返現(xiàn)hostname 與ipAddress 可從hostInfo獲得;hostInfo從inetUtils.findFirstNonLoopbackHostInfo獲得。

public EurekaInstanceConfigBean(InetUtils inetUtils) {
 this.inetUtils = inetUtils;
 this.hostInfo = this.inetUtils.findFirstNonLoopbackHostInfo();
 this.ipAddress = this.hostInfo.getIpAddress();
 this.hostname = this.hostInfo.getHostname();
}

重點就落在了這個InetUtils.findFirstNonLoopbackHostInfo方法上。

public InetAddress findFirstNonLoopbackAddress() {
 InetAddress result = null;
 try {
  // 記錄網(wǎng)卡最小索引
  int lowest = Integer.MAX_VALUE; 
  // 獲取所有網(wǎng)卡
  for (Enumeration<NetworkInterface> nics = NetworkInterface
   .getNetworkInterfaces(); nics.hasMoreElements();) {
  NetworkInterface ifc = nics.nextElement();
  if (ifc.isUp()) {//判斷網(wǎng)卡是否工作
   log.trace("Testing interface: " + ifc.getDisplayName());
   if (ifc.getIndex() < lowest || result == null) {
   lowest = ifc.getIndex();
   }
   else if (result != null) {
   continue;
   }
   // @formatter:off
   //網(wǎng)卡不忽略列表中
   if (!ignoreInterface(ifc.getDisplayName())) {
   for (Enumeration<InetAddress> addrs = ifc
    .getInetAddresses(); addrs.hasMoreElements();) {
    InetAddress address = addrs.nextElement();
    if (
 address instanceof Inet4Address//是IPV4
 && !address.isLoopbackAddress()//不是回環(huán)地址(127.***)
 && isPreferredAddress(address)) {//有推薦網(wǎng)卡,判斷是推薦網(wǎng)卡內(nèi)的ip
    log.trace("Found non-loopback interface: "
     + ifc.getDisplayName());
    result = address;
    }
   }
   }
   // @formatter:on
  }
  }
 }
 catch (IOException ex) {
  log.error("Cannot get first non-loopback address", ex);
 }
 if (result != null) {
  return result;
 }
 try {
  //都沒有找到使用JDK的InetAddress獲取
  return InetAddress.getLocalHost();
 }
 catch (UnknownHostException e) {
  log.warn("Unable to retrieve localhost");
 }
 return null;
}

此方法,會獲 取所有網(wǎng)卡,取ip地址合理、索引值最小且不在忽略列表的網(wǎng)卡的IP地址 作為結(jié)果。如果沒有找到合適的IP, 就調(diào)用 InetAddress.getLocalHost() 方法。

至此我們來總結(jié)下,關(guān)于注冊的幾種靈活配置:

  • Ip注冊: eureka.instance.prefer-ip-address=true

  • 指定IP注冊: eureka.instance.ip-address=

  • 忽略網(wǎng)卡: spring.cloud.inetutils.ignored-interfaces[0]

  • 推薦網(wǎng)卡: spring.cloud.inetutils.preferredNetworks[0]

  • 配置本機的host文件:當(dāng)InetUtils找不到合適ip時,會調(diào)用JDK的 InetAddress.getLocalHost() 。該方法會根據(jù)本機的hostname解析出對應(yīng)的ip。所以可以配置本機的hostname和 /etc/hosts 文件,直接將本機的主機名映射到有效IP地址

關(guān)于“springcloud注冊hostname或者ip的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

文章名稱:springcloud注冊hostname或者ip的示例分析
網(wǎng)頁URL:http://aaarwkj.com/article16/pcchgg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供Google企業(yè)建站、虛擬主機、用戶體驗營銷型網(wǎng)站建設(shè)、網(wǎng)站制作

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)
国产精品久久一级黄片| 成人久久精品一区二区| 一区二区亚洲欧美精品| 91精品国产色综合久久不| 国内自拍视频一区高清视频| 久久青草精品欧美日韩精品| 久久综合久中文字幕青草| 自拍偷拍一区蜜桃视频| 五十路六十路美熟人妻| 亚洲精品日韩一区二区| 国产精品午夜视频免费观看| 日韩黄色一级免费在线观看| 国产在线观看不卡视频| 国产大学生情侣在线视频| 一区二区三区日韩欧美在线| 欧美大片免费高清观看| 韩国福利短片在线观看| 国产又粗又长又大又长| 日韩人妻中文字幕专区| 国产黄片大秀在线观看| 亚洲欧美一区二区三区三| 国产精品国产三级国产不卡| 欧美精品一区二区亚洲| 欧美激情在线精品一区二区| av天堂网站在线观看| 欧美亚洲另类在线日韩国产| 日韩有码一区在线观看| 国产一区国产二区中文字幕| 免费av在线网址网站| 在线观看后入大屁股| 亚洲av日韩av在线不卡一区| 在线播放精品免费不卡| 欧美日韩黄色在线观看| 深夜三级福利在线观看| 亚洲日本成人av在线观看| 亚洲精品欧美综合第四区| 日韩一二三区免费不卡视频| 少妇人妻偷人精品系列| 欧美美女福利午夜视频| 自由成熟性生活免费视频| 国产精品一区二区三区激情 |