SpringCloud學習(二)---Eureka

来源:https://www.cnblogs.com/wadmwz/archive/2019/03/14/10522210.html
-Advertisement-
Play Games

Eureka 重點在使用,概念和源碼基本不涉及 Eureka是一個基於REST(REST是HTTP協議的)的服務,主要在亞馬遜網路服務(AWS)雲中使用,定位服務來進行中間層伺服器的均衡負載和故障轉移. Spring Cloud封裝Eureka來實現服務註冊和發現,Eureka採用了C S的設計架構 ...


Eureka

重點在使用,概念和源碼基本不涉及

Eureka是一個基於REST(REST是HTTP協議的)的服務,主要在亞馬遜網路服務(AWS)雲中使用,定位服務來進行中間層伺服器的均衡負載和故障轉移.

Spring Cloud封裝Eureka來實現服務註冊和發現,Eureka採用了C-S的設計架構,Eureka Server作為服務註冊功能的伺服器,是服務註冊中心,系統中的其他微服務都是Eureka Client,連接到Eureka Server,並維持心跳連接.這樣就可以通過 Eureka Server 來監控系統中各個微服務是否正常運行。

Eureka由兩個組件組成: Eureka Server和Eureka Client. Eureka Server用作服務註冊伺服器.Eureka Client就是Java客戶端,分為兩種,一種是Service Provider,一種是Service Consume,但是兩者不是嚴格的概念區分,也就是說一個Service Consume也可以是Service Provider,看實際的場景.

也就是Eureka Server提供服務的註冊和發現

Service Provider將自身服務註冊到Eureka Server,並保持心跳續約等

Service Consumer從Eureka Server獲取註冊列表,進行服務消費,也就是通過遠程調用與Service Provider進行通信.

搭建Eureka Server

  1. 創建項目,引入依賴
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-test</artifactId>
    <scope>test</scope>
</dependency>
  1. 啟動類添加註解
@SpringBootApplication
@EnableEurekaServer
public class EurekaServerSmileApplication {

    public static void main(String[] args) {
        SpringApplication.run(EurekaServerSmileApplication.class, args);
    }

}
  1. 配置文件
spring:
  application:
    name: spring-cloud-eureka-server
server:
  port: 8761
eureka:
  client:
    # 是否註冊自己
    register-with-eureka: false
    # 是否從Eureka Server獲取註冊信息
    fetch-registry: false
    # 設置與Eureka Server交互的地址,多個地址使用逗號合開,也就是集群
    service-url:
      default-zone: http://localhost:${server.port}/eureka/
  1. 啟動項目,直接訪問http://localhost:8761/就可以看到Eureka Server的主界面,這個時候No instances available.

集群的搭建(3個)

  1. 創建項目添加依賴(同上)
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-test</artifactId>
    <scope>test</scope>
</dependency>
  1. 啟動類添加註解(同上)
@SpringBootApplication
@EnableEurekaServer
public class EurekaServerSmileJqApplication {

    public static void main(String[] args) {
        SpringApplication.run(EurekaServerSmileJqApplication.class, args);
    }

}
  1. 配置文件,三個配置文件,第一個個application-master.properties:
server.port=8761
eureka.instance.hostname=master
eureka.client.serviceUrl.defaultZone=http://slave1:8762/eureka/,http://slave2:8763/eureka/
spring.application.name=eureka-server
eureka.client.register-with-eureka=true
eureka.client.fetch-registry=true

第二個application-slave1.properties

server.port=8762
eureka.instance.hostname=slave1
eureka.client.serviceUrl.defaultZone=http://master:8761/eureka/,http://slave2:8763/eureka/
spring.application.name=eureka-server
eureka.client.register-with-eureka=true
eureka.client.fetch-registry=true

application-slave2.properties

server.port=8763
eureka.instance.hostname=slave2
eureka.client.serviceUrl.defaultZone=http://master:8761/eureka/,http://slave1:8762/eureka/
spring.application.name=eureka-server
eureka.client.register-with-eureka=true
eureka.client.fetch-registry=true

之後找到本地的hosts文件,推薦使用everything軟體,可以搜索全盤,找到hosts文件添加下麵內容:

127.0.0.1   master
127.0.0.1   slave1 
127.0.0.1   slave2

進行打包,運行

mvn clean package
java -jar spring-cloud-eureka-0.0.1-SNAPSHOT.jar --spring.profiles.active=master
java -jar spring-cloud-eureka-0.0.1-SNAPSHOT.jar --spring.profiles.active=slave1
java -jar spring-cloud-eureka-0.0.1-SNAPSHOT.jar --spring.profiles.active=slave2

啟動完成後進行訪問就可以看到效果,這次進行了註冊.

服務註冊與調用實戰

這個就要說到上面的Eureka的三個角色,一個註冊中心,一個服務提供者,一個服務消費者,也就是Eureka Server,Service Provider(案例中拼錯了,寫成producter了,諒解),Service Consumer.中間還還涉及到遠程過程調用Feign,這裡只需要看一下就好,後面再說這個.

  1. 創建Eureka Service項目,添加依賴,添加註解,修改配置文件如下展示
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>


@SpringBootApplication
@EnableEurekaServer
public class ServerSmileDemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(ServerSmileDemoApplication.class, args);
    }

}


server.port=8761
spring.application.name=eureka-server
eureka.client.register-with-eureka=false
eureka.client.fetch-registry=false
eureka.client.service-url.defaultZone=http://localhost:${server.port}/eureka/

  1. 創建提供者,依次依賴,註解,配置文件,最後寫個controller
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>


@SpringBootApplication
@EnableDiscoveryClient
public class ServiceProducterDemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(ServiceProducterDemoApplication.class, args);
    }

}


server.port=9000
spring.application.name=eureka-service-producter
eureka.client.service-url.defaultZone=http://localhost:8761/eureka/


@RestController
public class HelloController {

    /** 看的博客上出現了Request method ‘POST’ not supported問題,因為沒有添加@RequestParam註解,說是不添加那個註解就是post請求,就算是用GetMapping指定了還是POST請求,這個本人沒有測試 */
    @GetMapping("hello")
    public String hello(@RequestParam String name){
        return "hello," + name + "1111111";
    }

}
  1. 創建消費者,添加依賴(這個需要添加feign的依賴),後面依次
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>

@SpringBootApplication
@EnableDiscoveryClient
@EnableFeignClients
public class ServiceConsumerDemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(ServiceConsumerDemoApplication.class, args);
    }

}

server.port=9010
spring.application.name=eureka-service-consumer
eureka.client.service-url.defaultZone=http://localhost:8761/eureka


@RestController
public class ConsumerController {

    @Autowired
    private HelloRemote helloRemote;

    @GetMapping("/hello/{name}")
    public String hello(@PathVariable("name") String name){
        return helloRemote.hello(name);
    }
}

上面按照順序啟動,先啟動註冊中心,然後啟動提供者,最後啟動消費者,訪問的時候訪問消費者的hello,就可以訪問到提供者的hello了.

負載均衡

feign有負載均衡的作用(feign是基於Ribbon實現的,所以自帶客戶端負載均衡功能),在上面的基礎之上,再次創建個提供者,與上面提供者不同的是埠號和controller稍微變下,具體代碼如下:

 <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>

server.port=9001
spring.application.name=eureka-service-producter
eureka.client.service-url.defaultZone=http://localhost:8761/eureka/

@SpringBootApplication
@EnableDiscoveryClient
public class ServiceProducterDemo1Application {

    public static void main(String[] args) {
        SpringApplication.run(ServiceProducterDemo1Application.class, args);
    }

}


@RestController
public class HelloController {

    @GetMapping("hello")
    public String hello(@RequestParam String name){
        return "hello," + name + "222222";
    }
}

之後同時啟動四個項目,看註冊中心就能看到EUREKA-SERVICE-PRODUCTER後有兩個服務,之後訪問http://localhost:9010/hello/wangzhi就可以看到hello,wangzhi1111111和hello,wangzhi222222交替出現,這個就是負載均衡了.

到這Eureka基本就結束了我沒有看源碼,這個說明下,還有人說Eureka閉源了,其實並不是,只是不繼續開發2.X版本,1.X版本還在更新維護呢.而且現在阿裡開源了Nacos,這個也是可以替代Eureka的,所以說替代方案還是有的.


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 11111 ...
  • 該需求出現原因:想要實現一個在一開始載入頁面時就出現一行文字逐漸出現的效果,且需要實現的是一種逐漸的過渡出現效果為不是一種生硬的突然間歇性出現。於是便開始嘗試利用最近正在學習的jQuery技術和JS實現。 【註】:該篇文章適合初學者閱讀,大佬請跳過。 【需要的知識點】:JS中利用Timing中的兩個 ...
  • Vue組件通訊 組件可謂是 Vue框架的最有特色之一, 可以將一大塊拆分為小零件最後組裝起來。這樣的好處易於維護、擴展和復用等。 提到 Vue的組件, 相必大家對Vue組件之間的數據流並不陌生。最常規的是父組件的數據通過 prop傳遞給子組件。子組件要進行數據更新,那麼需要通過自定義事件通知父組件。 ...
  • 十一大行為型模式之八:狀態模式。 簡介 姓名 :狀態模式 英文名 :State Pattern 價值觀 :有啥事讓狀態我來維護 個人介紹 : Allow an object to alter its behavior when its internal state changes.The objec ...
  • 一、相關問題: 1. 基類、派生類的構造和析構順序 2. 基類、派生類中virtual的取捨 二、測試代碼: 三、探討與結論: 1. 基類、派生類的構造和析構順序為:基類構造-派生類構造-派生類析構-基類析構 上述代碼輸出結果為: 2. 基類、派生類中virtual的取捨:若要實現動態綁定,基類中v ...
  • 整個流程: 使用HTMLTestRunner的Run方法執行用例,用例調用Excel讀取方法,將測試數據導入到unittest用例中執行,測試結果返回給HTMLTestRunner。 因為剛接觸介面自動化,寫的比較簡單。後面也會考慮加一個請求類型的封裝,excel測試數據也會增加一些欄位(如用例是否 ...
  • 將兩個有序鏈表合併為一個新的有序鏈表並返回。新鏈表是通過拼接給定的兩個鏈表的所有節點組成的。 示例:輸入:1->2->4, 1->3->4輸出:1->1->2->3->4->4 思路:始終讓l1是頭節點小的那一個,然後拿l2的節點值依次與l1比較並插入l1中。最後返回l1。 ...
  • def HanNuoTa(n,a,b,c):#n=盤子數 a,b,c為塔 if n == 1: print(a,"->",c) return None if n == 2: print(a,"->",b) print(a,"->",c) print(b,"->",c) return None Han ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...