您好,登錄后才能下訂單哦!
本篇文章為大家展示了如何通過(guò).NET Core + Spring Cloud實(shí)現(xiàn)服務(wù)注冊(cè)與發(fā)現(xiàn),內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。
毫無(wú)疑問(wèn),微服務(wù)架構(gòu)是目前的主流,在微服務(wù)架構(gòu)下,服務(wù)治理、負(fù)載均衡、服務(wù)熔斷、配置中心、API網(wǎng)關(guān) 等都是需要關(guān)注的問(wèn)題,當(dāng)然不是非要全部完善后才能進(jìn)行微服務(wù)開發(fā),在很多項(xiàng)目團(tuán)隊(duì)中,初期可能會(huì)將某個(gè)服務(wù)部署成集群,然后通過(guò) Nginx 代理做到負(fù)載均衡提供服務(wù),但隨著微服務(wù)體量逐漸龐大,以上提到需要關(guān)注的問(wèn)題就越來(lái)越明顯。在 .NET Core 環(huán)境下,目前比較流行的微服務(wù)架構(gòu):Consul(服務(wù)治理、配置中心)+ Polly(服務(wù)熔斷)+ Ocelot(API網(wǎng)關(guān)),當(dāng)然這只是一種組合方式。
今天主要介紹一下如何通過(guò) Spring Cloud 下的 Eureka 來(lái)實(shí)現(xiàn)服務(wù)注冊(cè)與發(fā)現(xiàn),Spring Cloud 是 Java 平臺(tái)提供的一套解決方案,提供了微服務(wù)的基礎(chǔ)功能,包括 Eureka(服務(wù)治理)、Config(配置中心)、Hystrix(服務(wù)熔斷)、Zuul(API網(wǎng)關(guān))等。
至于為什么要將 .NET Core 服務(wù)融合 Spring Cloud 來(lái)部署,毫無(wú)疑問(wèn),這只是一種結(jié)合方案,如果團(tuán)隊(duì)是 Java + .NET, 如果恰好需要,嘗試一下也為何不可。
Steeltoe[2] 是 .NET 與 Spring Cloud 結(jié)合的橋梁,Steeltoe 客戶端庫(kù)使 .NET Core 和 .NET Framework 應(yīng)用程序能夠輕松利用 Spring Cloud 的 Eureka、Hystrix、Config Server、云平臺(tái)服務(wù) 等核心組件。更多資料請(qǐng)參考官方文檔:http://steeltoe.io/docs/
在 IntelliJ IDEA 中新建項(xiàng)目,選 Spring Initializr 完成項(xiàng)目創(chuàng)建
在 pom.xml 添加 eureka-server 的依賴
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
在啟動(dòng)類上添加 EnableEurekaServer 注解
@EnableEurekaServer
@SpringBootApplication
public class EurekaServiceApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaServiceApplication.class, args);
}
}
修改配置文件,模擬搭建 Eureka Server 集群
application.yml
spring:
application:
# 服務(wù)名
name: eureka-service
profiles:
# 默認(rèn)使用 server1 配置
active: server1
eureka:
instance:
# 超過(guò)這個(gè)時(shí)間沒(méi)收到心跳就剔除這個(gè)服務(wù),這個(gè)配置一般為服務(wù)刷新時(shí)間配置的三倍,默認(rèn)90s
lease-expiration-duration-in-seconds: 15
# 服務(wù)刷新時(shí)間,默認(rèn)30s
lease-renewal-interval-in-seconds: 5
client:
# eureka client 刷新本地緩存時(shí)間,默認(rèn)30s
registry-fetch-interval-seconds: 5
server:
# eureka server 刷新 readCacheMap 的時(shí)間,client 讀取的是 readCacheMap,默認(rèn)30s
response-cache-update-interval-ms: 3000
# 服務(wù)下線任務(wù)定時(shí),默認(rèn)60s
eviction-interval-timer-in-ms: 3000
application-server1.yml
server:
port: 8001
eureka:
instance:
hostname: server1
client:
service-url:
defaultZone: http://server2:8002/eureka/,http://server3:8003/eureka/
application-server2.yml 和 application-server3.yml 與 server1 類似,只需 port、hostname、defaultZone 作調(diào)整。hostname 對(duì)應(yīng)的名稱需要修改電腦的 C:\Windows\System32\drivers\etc\HOSTS 文件添加映射關(guān)系
127.0.0.1 server1
127.0.0.1 server2
127.0.0.1 server3
修改啟動(dòng)配置
基礎(chǔ)服務(wù)只提供服務(wù),不引用其他服務(wù)
創(chuàng)建 .NET Core WebApi 項(xiàng)目
NuGet 添加 Steeltoe.Discovery.ClientCore 引用(目前版本 2.1.1)
修改 Startup.cs 的 ConfigureServices 方法,添加 AddDiscoveryClient
public void ConfigureServices(IServiceCollection services)
{
services.AddDiscoveryClient(Configuration);
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
}
修改 Startup.cs 的 Configure 方法,添加 UseDiscoveryClient
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseMvc();
app.UseDiscoveryClient();
}
修改配置文件 appsettings.json,更多配置請(qǐng)參考 eureka-client-settings[3]
{
"spring": {
"application": {
"name": "base-service"
}
},
"eureka": {
"client": {
"serviceUrl": "http://server1:8001/eureka/",
"shouldRegisterWithEureka": true,
"shouldFetchRegistry": false // 不需要獲取注冊(cè)信息,只提供服務(wù)
},
"instance": {
"port": 5001
}
}
}
修改 program.cs,添加 UseUrls,端口與 appsettings.json port 一致
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseUrls("http://*:5001")
.UseStartup<Startup>();
再新建一個(gè)項(xiàng)目,其他都一致,端口改成 5002
啟動(dòng) 2 個(gè) base-service 成功后在 Eureka 中查看如下:
通過(guò)訪問(wèn) http://server1:6001/api/values 查看調(diào)用 base-service 返回結(jié)果,因?yàn)?base-service 有 2 個(gè)服務(wù),所以會(huì)自動(dòng)做到負(fù)載均衡
上述內(nèi)容就是如何通過(guò).NET Core + Spring Cloud實(shí)現(xiàn)服務(wù)注冊(cè)與發(fā)現(xiàn),你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。