Spring Cloud 學習-上
1.Spring Cloud 學習-上
- 初識 Spring Cloud
- Spring Cloud 服務治理
2.初識Spring Cloud
2.1-微服架構
微服務架構:
"微服務”一詞源於 Martin Fowler的名為 Microservices的博文,可以在他的官方部落格上找到
http://martinfowler.com/articles/microservices.html
-
微服務是系統架構上的一種設計風格,它的主旨是將一個原本獨立的系統拆分成多個小型服務,這些小型服務都在各自獨立的程序中執行,服務之間一般通過 HTTP 的 RESTfuLAPI 進行通訊協作。
-
被拆分成的每一個小型服務都圍繞著系統中的某一項或些耦合度較高的業務功能進行構建,並且每個服務都維護著自身的資料儲存、業務開發自動化測試案例以及獨立部署機
制。 -
由於有了輕量級的通訊協作基礎,所以這些微服務可以使用
不同的語言來編寫。
2.2-初識Spring Cloud
-
Spring Cloud 是一系列框架的有序集合。
-
Spring Cloud 並沒有重複製造輪子,它只是將目前各家公司開發的比較成熟、經得起實際考驗的服務框架組合起來。
-
通過 Spring Boot 風格進行再封裝遮蔽掉了複雜的配置和實現原理,最終給開發者留出了一套簡單易懂、易部署和易維護的分散式系統開發工具包。
-
它利用Spring Boot的開發便利性巧妙地簡化了分散式系統基礎設施的開發,如服務發現註冊、配置中心、訊息匯流排、負載均衡、 斷路器、資料監控等,都可以用Spring Boot的開發風格做到一鍵啟動和部署。
-
Spring Cloud專案官方網址:https://spring.io/projects/spring-cloud
-
Spring Cloud 版本命名方式採用了倫敦地鐵站的名稱,同時根據字母表的順序來對應版本時間順序,比如:最早的Release版本:Angel,第二個Release版本:Brixton,然後是Camden、Dalston、Edgware,Finchley,Greenwich,Hoxton。
-
目前最新的是Hoxton版本。
2.3-Spring Cloud 和dubbo對比
Spring Cloud 和dubbo對比
-
Spring Cloud 與 Dubbo 都是實現微服務有效的工具。
-
Dubbo 只是實現了服務治理,而 Spring Cloud 子專案分別覆蓋了微服務架構下的眾多部件。
-
Dubbo 使用 RPC 通訊協議,Spring Cloud 使用 RESTful 完成通訊,Dubbo 效率略高於 Spring Cloud。
總結
-
微服務就是將專案的各個模組拆分為可獨立執行、部署、測試的架構設計風格。
-
Spring 公司將其他公司中微服務架構常用的元件整合起來,並使用 SpringBoot 簡化其開發、配置。
稱為 Spring Cloud
-
Spring Cloud 與 Dubbo都是實現微服務有效的工具。Dubbo 效能更好,而 Spring Cloud 功能更全面。
3.Spring Cloud服務治理
3.1-Eureka介紹
• Eureka 是 Netflix 公司開源的一個服務註冊與發現的元件 。
• Eureka 和其他 Netflix 公司的服務元件(例如負載均衡、熔斷器、閘道器等) 一起,被 Spring Cloud 社群整合為
Spring-Cloud-Netflix 模組。
• Eureka 包含兩個元件:Eureka Server (註冊中心) 和 Eureka Client (服務提供者、服務消費者)。
Eureka學習步驟
- 搭建 Provider 和 Consumer 服務。
- 使用 RestTemplate 完成遠端呼叫。
- 搭建 Eureka Server 服務。
- 改造 Provider 和 Consumer 稱為 Eureka Client。
- Consumer 服務 通過從 Eureka Server 中抓取 Provider
地址 完成 遠端呼叫
3.2-Eureka快速入門
3.2.1-環境搭建
3.2.1.1-建立父工程
建立module -父工程 Spring-cloud-parent
- 建立後的目錄結構(刪除src)
Spring-cloud-parent pom.xml
<!--spring boot 環境 -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.0.RELEASE</version>
<relativePath/>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
3.2.1.2-建立服務提供者
- 建立服務提供者eureka-provider
eureka-provider pom.xml
<dependencies>
<!--spring boot web-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
GoodsController
package com.itheima.provider.controller;
import com.itheima.provider.domain.Goods;
import com.itheima.provider.service.GoodsService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* Goods Controller 服務提供方
*/
@RestController
@RequestMapping("/goods")
public class GoodsController {
@Autowired
private GoodsService goodsService;
@GetMapping("/findOne/{id}")
public Goods findOne(@PathVariable("id") int id){
Goods goods = goodsService.findOne(id);
return goods;
}
}
GoodsService
package com.itheima.provider.service;
import com.itheima.provider.dao.GoodsDao;
import com.itheima.provider.domain.Goods;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
/**
* Goods 業務層
*/
@Service
public class GoodsService {
@Autowired
private GoodsDao goodsDao;
/**
* 根據id查詢
* @param id
* @return
*/
public Goods findOne(int id){
return goodsDao.findOne(id);
}
}
Goods
package com.itheima.provider.domain;
/**
* 商品實體類
*/
public class Goods {
private int id;
private String title;//商品標題
private double price;//商品價格
private int count;//商品庫存
public Goods() {
}
public Goods(int id, String title, double price, int count) {
this.id = id;
this.title = title;
this.price = price;
this.count = count;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public double getPrice() {
return price;
}
public void setPrice(double price) {
this.price = price;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
}
GoodsDao
package com.itheima.provider.dao;
import com.itheima.provider.domain.Goods;
import org.springframework.stereotype.Repository;
import javax.validation.ReportAsSingleViolation;
/**
* 商品Dao
*/
@Repository
public class GoodsDao {
public Goods findOne(int id){
return new Goods(1,"華為手機",3999,10000);
}
}
ProviderApp
package com.itheima.provider;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* 啟動類
*/
@SpringBootApplication
public class ProviderApp {
public static void main(String[] args) {
SpringApplication.run(ProviderApp.class,args);
}
}
application.yml
server:
port: 8000
3.2.1.2-建立服務消費者
- 建立服務消費者eureka-consumer
- 最終目錄結構
OrderController
package com.itheima.consumer.controller;
import com.itheima.consumer.domain.Goods;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* 服務的呼叫方
*/
@RestController
@RequestMapping("/order")
public class OrderController {
@GetMapping("/goods/{id}")
public Goods findGoodsById(@PathVariable("id") int id){
System.out.println("findGoodsById..."+id);
//遠端呼叫Goods服務中的findOne介面
return null;
}
}
Goods
package com.itheima.consumer.domain;
/**
* 商品實體類
*/
public class Goods {
private int id;
private String title;//商品標題
private double price;//商品價格
private int count;//商品庫存
public Goods() {
}
public Goods(int id, String title, double price, int count) {
this.id = id;
this.title = title;
this.price = price;
this.count = count;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public double getPrice() {
return price;
}
public void setPrice(double price) {
this.price = price;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
}
ConsumerApp
package com.itheima.consumer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class ConsumerApp {
public static void main(String[] args) {
SpringApplication.run(ConsumerApp.class,args);
}
}
application.yml
server:
port: 9000
3.2.2-RestTemplate遠端呼叫
• Spring提供的一種簡單便捷的模板類,用於在 java 程式碼裡訪問 restful 服務。
• 其功能與 HttpClient 類似,但是 RestTemplate 實現更優雅,使用更方便。
修改消費方程式碼
RestTemplateConfig
package com.itheima.consumer.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;
@Configuration
public class RestTemplateConfig {
@Bean
public RestTemplate restTemplate(){
return new RestTemplate();
}
}
OrderController
package com.itheima.consumer.controller;
import com.itheima.consumer.domain.Goods;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;
/**
* 服務的呼叫方
*/
@RestController
@RequestMapping("/order")
public class OrderController {
@Autowired
private RestTemplate restTemplate;
@GetMapping("/goods/{id}")
public Goods findGoodsById(@PathVariable("id") int id){
System.out.println("findGoodsById..."+id);
/*
//遠端呼叫Goods服務中的findOne介面
使用RestTemplate
1. 定義Bean restTemplate
2. 注入Bean
3. 呼叫方法
*/
String url = "http://localhost:8000/goods/findOne/"+id;
// 3. 呼叫方法
Goods goods = restTemplate.getForObject(url, Goods.class);
return goods;
}
}
3.2.3- Eureka Server搭建
① 建立 eureka-server 模組
② 引入 SpringCloud 和 euraka-server 相關依賴
Spring-cloud-parent pom.xml
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<!--spring cloud 版本-->
<spring-cloud.version>Greenwich.RELEASE</spring-cloud.version>
</properties>
<!--引入Spring Cloud 依賴-->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
eureka-server pom.xml
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- eureka-server -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
</dependencies>
EurekaApp
package com.itheima.eureka;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
@SpringBootApplication
// 啟用EurekaServer
@EnableEurekaServer
public class EurekaApp {
public static void main(String[] args) {
SpringApplication.run(EurekaApp.class,args);
}
}
③ 完成 Eureka Server 相關配置
application.yml
server:
port: 8761
# eureka 配置
# eureka 一共有4部分 配置
# 1. dashboard:eureka的web控制檯配置
# 2. server:eureka的服務端配置
# 3. client:eureka的客戶端配置
# 4. instance:eureka的例項配置
eureka:
instance:
hostname: localhost # 主機名
client:
service-url:
defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka # eureka服務端地址,將來客戶端使用該地址和eureka進行通訊
register-with-eureka: false # 是否將自己的路徑 註冊到eureka上。eureka server 不需要的,eureka provider client 需要
fetch-registry: false # 是否需要從eureka中抓取路徑。eureka server 不需要的,eureka consumer client 需要
④ 啟動該模組
3.2.4-Eureka控制檯介紹
System status:系統狀態資訊
DS Replicas:叢集資訊
tance currently registered with Eureka: 例項註冊資訊
General Info :通用資訊
Instance Info :例項資訊
3.2.5-Eureka Client
① 引 eureka-client 相關依賴
eureka-provider pom.xml
<dependencies>
<!--spring boot web-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- eureka-client -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
</dependencies>
ProviderApp
package com.itheima.provider;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
/**
* 啟動類
*/
@EnableEurekaClient //該註解 在新版本中可以省略
@SpringBootApplication
public class ProviderApp {
public static void main(String[] args) {
SpringApplication.run(ProviderApp.class,args);
}
}
② 完成 eureka client 相關配置
application.yml
server:
port: 8001
eureka:
instance:
hostname: localhost # 主機名
client:
service-url:
defaultZone: http://localhost:8761/eureka # eureka服務端地址,將來客戶端使用該地址和eureka進行通訊
spring:
application:
name: eureka-provider # 設定當前應用的名稱。將來會在eureka中Application顯示。將來需要使用該名稱來獲取路徑
③ 啟動 測試
服務消費者eureka-consumer通過修改,也可以展示在控制檯
eureka-consumer在這裡僅僅是我們人為定義為消費者,作為一個服務,其實既可以作為服務提供方,同時也可以作為服務消費方
ConsumerApp新增@EnableEurekaClient
package com.itheima.consumer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
@EnableEurekaClient
@SpringBootApplication
public class ConsumerApp {
public static void main(String[] args) {
SpringApplication.run(ConsumerApp.class,args);
}
}
application.yml
server:
port: 9000
eureka:
instance:
hostname: localhost # 主機名
client:
service-url:
defaultZone: http://localhost:8761/eureka # eureka服務端地址,將來客戶端使用該地址和eureka進行通訊
spring:
application:
name: eureka-consumer # 設定當前應用的名稱。將來會在eureka中Application顯示。將來需要使用該名稱來獲取路徑
3.2.6- 動態獲取路徑
ConsumerApp新增@EnableDiscoveryClient
package com.itheima.consumer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
@EnableDiscoveryClient // 啟用DiscoveryClient
@EnableEurekaClient
@SpringBootApplication
public class ConsumerApp {
public static void main(String[] args) {
SpringApplication.run(ConsumerApp.class,args);
}
}
OrderController修改程式碼動態獲取路徑
package com.itheima.consumer.controller;
import com.itheima.consumer.domain.Goods;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cloud.client.ServiceInstance;
import org.springframework.cloud.client.discovery.DiscoveryClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;
import java.util.List;
/**
* 服務的呼叫方
*/
@RestController
@RequestMapping("/order")
public class OrderController {
@Autowired
private RestTemplate restTemplate;
@Autowired
private DiscoveryClient discoveryClient;
@GetMapping("/goods/{id}")
public Goods findGoodsById(@PathVariable("id") int id){
System.out.println("findGoodsById..."+id);
/*
//遠端呼叫Goods服務中的findOne介面
使用RestTemplate
1. 定義Bean restTemplate
2. 注入Bean
3. 呼叫方法
*/
/*
動態從Eureka Server 中獲取 provider 的 ip 和埠
1. 注入 DiscoveryClient 物件.啟用
2. 呼叫方法
*/
//演示discoveryClient 使用
List<ServiceInstance> instances = discoveryClient.getInstances("EUREKA-PROVIDER");
//判斷集合是否有資料
if(instances == null || instances.size() == 0){
//集合沒有資料
return null;
}
ServiceInstance instance = instances.get(0);
String host = instance.getHost();//獲取ip
int port = instance.getPort();//獲取埠
System.out.println(host);
System.out.println(port);
String url = "http://"+host+":"+port+"/goods/findOne/"+id;
// 3. 呼叫方法
Goods goods = restTemplate.getForObject(url, Goods.class);
return goods;
}
}
3.3-Eureka屬性
3.3.1-instance相關屬性
Eureka Instance的配置資訊全部儲存在org.springframework.cloud.netflix.eureka.EurekaInstanceConfigBean配置類裡,實際上它是com.netflix.appinfo.EurekaInstanceConfig的實現類,替代了netflix的com.netflix.appinfo.CloudInstanceConfig的預設實現。
Eureka Instance的配置資訊全部以eureka.instance.xxx的格式配置。
配置列表
- appname = unknown
應用名,首先獲取spring.application.name的值,如果取值為空,則取預設unknown。
- appGroupName = null
應用組名
- instanceEnabledOnit = false
例項註冊到Eureka上是,是否立刻開啟通訊。有時候應用在準備好服務之前需要一些預處理。
- nonSecurePort = 80
非安全的埠
- securePort = 443
安全埠
- nonSecurePortEnabled = true
是否開啟非安全埠通訊
- securePortEnabled = false
是否開啟安全埠通訊
- leaseRenewalIntervalInSeconds = 30
例項續約間隔時間
- leaseExpirationDurationInSeconds = 90
例項超時時間,表示最大leaseExpirationDurationInSeconds秒後沒有續約,Server就認為他不可用了,隨之就會將其剔除。
- virtualHostName = unknown
虛擬主機名,首先獲取spring.application.name的值,如果取值為空,則取預設unknown。
- instanceId
註冊到eureka上的唯一例項ID,不能與相同appname的其他例項重複。
- secureVirtualHostName = unknown
安全虛擬主機名,首先獲取spring.application.name的值,如果取值為空,則取預設unknown。
- metadataMap = new HashMap();
例項元資料,可以供其他例項使用。比如spring-boot-admin在監控時,獲取例項的上下文和埠。
- dataCenterInfo = new MyDataCenterInfo(DataCenterInfo.Name.MyOwn);
例項部署的資料中心。如AWS、MyOwn。
- ipAddress=null
例項的IP地址
- statusPageUrlPath = "/actuator/info"
例項狀態頁相對url
- statusPageUrl = null
例項狀態頁絕對URL
- homePageUrlPath = "/"
例項主頁相對URL
- homePageUrl = null
例項主頁絕對URL
- healthCheckUrlUrlPath = "/actuator/health"
例項健康檢查相對URL
- healthCheckUrl = null
例項健康檢查絕對URL
- secureHealthCheckUrl = null
例項安全的健康檢查絕對URL
- namespace = "eureka"
配置屬性的名稱空間(Spring Cloud中被忽略)
- hostname = null
主機名,不配置的時候講根據作業系統的主機名來獲取
- preferIpAddress = false
是否優先使用IP地址作為主機名的標識
3.3.1-server相關屬性
Eureka Server註冊中心端的配置是對註冊中心的特性配置。Eureka Server的配置全部在org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean裡,實際上它是com.netflix.eureka.EurekaServerConfig的實現類,替代了netflix的預設實現。
Eureka Server的配置全部以eureka.server.xxx的格式進行配置。
配置列表
- enableSelfPreservation=true
是否開啟自我保護
- renewalPercentThreshold = 0.85
自我保護續約百分比閥值因子。如果實際續約數小於續約數閥值,則開啟自我保護
- renewalThresholdUpdateIntervalMs = 15 * 60 * 1000
續約數閥值更新頻率。
- peerEurekaNodesUpdateIntervalMs = 10 * 60 * 1000
Eureka Server節點更新頻率。
- enableReplicatedRequestCompression = false
是否啟用複製請求壓縮。
- waitTimeInMsWhenSyncEmpty=5 * 60 * 1000
當從其他節點同步例項資訊為空時等待的時間。
- peerNodeConnectTimeoutMs=200
節點間連線的超時時間。
- peerNodeReadTimeoutMs=200
節點間讀取資訊的超時時間。
- peerNodeTotalConnections=1000
節點間連線總數。
- peerNodeTotalConnectionsPerHost = 500;
單個節點間連線總數。
- peerNodeConnectionIdleTimeoutSeconds = 30;
節點間連線空閒超時時間。
- retentionTimeInMSInDeltaQueue = 3 * MINUTES;
增量佇列的快取時間。
- deltaRetentionTimerIntervalInMs = 30 * 1000;
清理增量佇列中過期的頻率。
- evictionIntervalTimerInMs = 60 * 1000;
剔除任務頻率。
- responseCacheAutoExpirationInSeconds = 180;
註冊列表快取超時時間(當註冊列表沒有變化時)
- responseCacheUpdateIntervalMs = 30 * 1000;
註冊列表快取更新頻率。
- useReadOnlyResponseCache = true;
是否開啟註冊列表的二級快取。
- disableDelta=false。
是否為client提供增量資訊。
- maxThreadsForStatusReplication = 1;
狀態同步的最大執行緒數。
- maxElementsInStatusReplicationPool = 10000;
狀態同步佇列的最大容量。
- syncWhenTimestampDiffers = true;
當時間差異時是否同步。
- registrySyncRetries = 0;
註冊資訊同步重試次數。
- registrySyncRetryWaitMs = 30 * 1000;
註冊資訊同步重試期間的時間間隔。
- maxElementsInPeerReplicationPool = 10000;
節點間同步事件的最大容量。
- minThreadsForPeerReplication = 5;
節點間同步的最小執行緒數。
- maxThreadsForPeerReplication = 20;
節點間同步的最大執行緒數。
- maxTimeForReplication = 30000;
節點間同步的最大時間,單位為毫秒。
- disableDeltaForRemoteRegions = false;
是否啟用遠端區域增量。
- remoteRegionConnectTimeoutMs = 1000;
遠端區域連線超時時間。
- remoteRegionReadTimeoutMs = 1000;
遠端區域讀取超時時間。
- remoteRegionTotalConnections = 1000;
遠端區域最大連線數
- remoteRegionTotalConnectionsPerHost = 500;
遠端區域單機連線數
- remoteRegionConnectionIdleTimeoutSeconds = 30;
遠端區域連線空閒超時時間。
- remoteRegionRegistryFetchInterval = 30;
遠端區域註冊資訊拉取頻率。
- remoteRegionFetchThreadPoolSize = 20;
遠端區域註冊資訊執行緒數。
3.4-Eureka高可用
- 準備兩個Eureka Server
- 分別進行配置,相互註冊
- Eureka Client 分別註冊到這兩個 Eureka Server中
3.4.1-搭建
建立eureka-server-1
pom.xml
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- eureka-server -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
</dependencies>
application.yml
server:
port: 8761
eureka:
instance:
hostname: eureka-server1 # 主機名
client:
service-url:
defaultZone: http://eureka-server2:8762/eureka
register-with-eureka: true # 是否將自己的路徑 註冊到eureka上。eureka server 不需要的,eureka provider client 需要
fetch-registry: true # 是否需要從eureka中抓取路徑。eureka server 不需要的,eureka consumer client 需要
spring:
application:
name: eureka-server-ha
Eureka1App
package eureka;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
@SpringBootApplication
// 啟用EurekaServer
@EnableEurekaServer
public class Eureka1App {
public static void main(String[] args) {
SpringApplication.run(Eureka1App.class,args);
}
}
建立eureka-server-2
pom.xml
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- eureka-server -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
</dependencies>
application.yml
server:
port: 8762
eureka:
instance:
hostname: eureka-server2 # 主機名
client:
service-url:
defaultZone: http://eureka-server1:8761/eureka
register-with-eureka: true # 是否將自己的路徑 註冊到eureka上。eureka server 不需要的,eureka provider client 需要
fetch-registry: true # 是否需要從eureka中抓取路徑。eureka server 不需要的,eureka consumer client 需要
spring:
application:
name: eureka-server-ha
Eureka2App
package eureka;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
@SpringBootApplication
// 啟用EurekaServer
@EnableEurekaServer
public class Eureka2App {
public static void main(String[] args) {
SpringApplication.run(Eureka2App.class,args);
}
}
修改本地host
3.4.2-客戶端測試
修改服務提供者和服務消費者配置檔案中的註冊服務地址
eureka-provider application.yml
server:
port: 8001
eureka:
instance:
hostname: localhost # 主機名
prefer-ip-address: true # 將當前例項的ip註冊到eureka server 中。預設是false 註冊主機名
ip-address: 127.0.0.1 # 設定當前例項的ip
instance-id: ${eureka.instance.ip-address}:${spring.application.name}:${server.port} # 設定web控制檯顯示的 例項id
lease-renewal-interval-in-seconds: 3 # 每隔3 秒發一次心跳包
lease-expiration-duration-in-seconds: 9 # 如果9秒沒有發心跳包,伺服器呀,你把我幹掉吧~
client:
service-url:
defaultZone: http://eureka-server1:8761/eureka,http://eureka-server2:8762/eureka # eureka服務端地址,將來客戶端使用該地址和eureka進行通訊
spring:
application:
name: eureka-provider # 設定當前應用的名稱。將來會在eureka中Application顯示。將來需要使用該名稱來獲取路徑
eureka-consumer application.yml
server:
port: 9000
eureka:
instance:
hostname: localhost # 主機名
client:
service-url:
defaultZone: http://eureka-server1:8761/eureka,http://eureka-server2:8762/eureka # eureka服務端地址,將來客戶端使用該地址和eureka進行通訊
spring:
application:
name: eureka-consumer # 設定當前應用的名稱。將來會在eureka中Application顯示。將來需要使用該名稱來獲取路徑
測試結果
3.5-Consul
3.5.1-Consul 概述
Consul 是由 HashiCorp 基於 Go 語言開發的,支援多資料中心,分散式高可用的服務釋出和註冊服務軟體。
• 用於實現分散式系統的服務發現與配置。
• 使用起來也較 為簡單。具有天然可移植性(支援Linux、windows和Mac OS X);安裝包僅包含一個可執行檔案,
方便部署 。
• 官網地址: https://www.consul.io
啟動consul
dev模式:不會持久化資料
啟動成功
控制檯
3.5.2-Consul 快速入門
- 搭建 Provider 和 Consumer 服務。
- 使用 RestTemplate 完成遠端呼叫。
- 將Provider服務註冊到Consul中。
- Consumer 服務 通過從 Consul 中抓取 Provider 地
址 完成 遠端呼叫
Provider pom.xml
<dependencies>
<!--consul 客戶端-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-consul-discovery</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
</dependencies>
application.yml
server:
port: 8000
spring:
cloud:
consul:
host: localhost # consul 服務端的 ip
port: 8500 # consul 服務端的埠 預設8500
discovery:
service-name: ${spring.application.name} # 當前應用註冊到consul的名稱
prefer-ip-address: true # 註冊ip
application:
name: consul-provider # 應用名稱
consumer pom.xml
<dependencies>
<!--consul 客戶端-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-consul-discovery</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
</dependencies>
application.yml
server:
port: 9000
spring:
cloud:
consul:
host: localhost # consul 服務端的 ip
port: 8500 # consul 服務端的埠 預設8500
discovery:
service-name: ${spring.application.name} # 當前應用註冊到consul的名稱
prefer-ip-address: true # 註冊ip
application:
name: consul-consumer # 應用名稱
OrderController
package com.itheima.consul.controller;
import com.itheima.consul.domain.Goods;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cloud.client.ServiceInstance;
import org.springframework.cloud.client.discovery.DiscoveryClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;
import java.util.List;
/**
* 服務的呼叫方
*/
@RestController
@RequestMapping("/order")
public class OrderController {
@Autowired
private RestTemplate restTemplate;
@Autowired
private DiscoveryClient discoveryClient;
@GetMapping("/goods/{id}")
public Goods findGoodsById(@PathVariable("id") int id){
//演示discoveryClient 使用
List<ServiceInstance> instances = discoveryClient.getInstances("consul-PROVIDER");
//判斷集合是否有資料
if(instances == null || instances.size() == 0){
//集合沒有資料
return null;
}
ServiceInstance instance = instances.get(0);
String host = instance.getHost();//獲取ip
int port = instance.getPort();//獲取埠
System.out.println(host);
System.out.println(port);
String url = "http://"+host+":"+port+"/goods/findOne/"+id;
// 3. 呼叫方法
Goods goods = restTemplate.getForObject(url, Goods.class);
return goods;
}
}
3.6-Nacos
3.6.1-Nacos 概述
Nacos(Dynamic Naming and Configuration Service) 是阿里巴巴2018年7月開源的專案。
• 它專注於服務發現和配置管理領域 致力於幫助您發現、配置和管理微服務。Nacos 支援幾乎所有主流型別的“服
務”的發現、配置和管理。
• 一句話概括就是Nacos = Spring Cloud註冊中心 + Spring Cloud配置中心。
• 官網:https://nacos.io/
• 下載地址: https://github.com/alibaba/nacos/releases
啟動
啟動成功效果:
控制檯登入
賬號,密碼:nacos
控制檯頁面
Spring cloud Alibaba 元件
3.6.2-Nacos 快速入門
nacos-provider pom.xml
<dependencies>
<!--nacos-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
<version>0.2.2.RELEASE</version>
</dependency>
<dependency>
<groupId>com.alibaba.nacos</groupId>
<artifactId>nacos-client</artifactId>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
</dependencies>
application.yml
server:
port: 8000
spring:
cloud:
nacos:
discovery:
server-addr: 127.0.0.1:8848 # 配置nacos 服務端地址
application:
name: nacos-provider # 服務名稱
nacos consumer pom.xml
<dependencies>
<!--nacos-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
<version>0.2.2.RELEASE</version>
</dependency>
<dependency>
<groupId>com.alibaba.nacos</groupId>
<artifactId>nacos-client</artifactId>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
</dependencies>
application.yml
server:
port: 9000
spring:
cloud:
nacos:
discovery:
server-addr: 127.0.0.1:8848 # 配置nacos 服務端地址
application:
name: nacos-consumer # 服務名稱
控制檯顯示
詳情頁面
示例程式碼