1.什么是API網(wǎng)關
API網(wǎng)關是微服務架構中的唯一入口,它提供一個單獨且統(tǒng)一的API入口用于訪問內(nèi)部一個或多個API。它可以具有身份驗證,監(jiān)控,負載均衡,緩存,請求分片與管理,靜態(tài)響應處理等。API網(wǎng)關方式的核心要點是,所有的客戶端和消費端都通過統(tǒng)一的網(wǎng)關接入微服務,在網(wǎng)關層處理所有的非業(yè)務功能。通常,網(wǎng)關也是提供REST/HTTP的訪問API。服務端通過API-GW注冊和管理服務。
Ocelot是用.net Core實現(xiàn)的一款開源的網(wǎng)關,Ocelot其實就是一組按照順序排列的.net core中間件。它接受到請求之后用request builder構建一個HttpRequestMessage對象并發(fā)送到下游服務,當下游請求返回到Ocelot管道時再由一個中間件將HttpRequestMessage映射到HttpResponse上返回客戶端。
開源地址點擊這里
新建三個項目webApi項目,分別命名為ApiGateway,Api_A,Api_B
設置Api_A端口為5001,Api_B端口為5002,ApiGateway為5000
為ApiGateway項目安裝Ocelot,在Nuget中搜索Ocelot或者直接使用Install-Package Ocelot進行安裝。最新版本為13.8.x支持core3.0。
在ApiGateway新建一個configuration.json配置文件。
{
"ReRoutes": [
{
//上游Api請求格式
"UpstreamPathTemplate": "/Api_A/{controller}/{action}",
//網(wǎng)關轉發(fā)到下游格式
"DownstreamPathTemplate": "/api/{controller}/{action}",
//上下游支持請求方法
"UpstreamHttpMethod": [ "GET", "POST", "DELETE", "PUT" ],
"DownstreamScheme": "http",
//下游服務配置
"DownstreamHostAndPorts": [
{
//下游地址
"Host": "localhost",
//下游端口號
"Port": 5001
}
]
},
{
"UpstreamPathTemplate": "/Api_B/{controller}/{action}",
"DownstreamPathTemplate": "/api/{controller}/{action}",
"UpstreamHttpMethod": [ "GET", "POST", "DELETE", "PUT" ],
"DownstreamScheme": "http",
"DownstreamHostAndPorts": [
{
"Host": "localhost",
"Port": 5002
}
]
}
]
}
在Startup.cs 的ConfigureServices和Configure中配置Ocelot
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2);
services.AddOcelot(new ConfigurationBuilder()
.AddJsonFile("configuration.json")
.Build());
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
app.UseOcelot();
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseMvc();
}
分別為Api_A,和Api_B分別添加一個print接口。
[HttpGet("print")]
public string Print()
{
return "Api_A";
}
[HttpGet("print")]
public string Print()
{
return "Api_B";
}
啟動三個項目,使用postman來調(diào)用網(wǎng)關
訪問Api_A服務
訪問Api_B服務
可以看到網(wǎng)關通過接受到的請求的Url后通過我們的配置自動轉發(fā)到了我們想要訪問的服務。
當下游擁有多個節(jié)點的時候,我們可以用DownstreamHostAndPorts來配置
{
"UpstreamPathTemplate": "/Api_A/{controller}/{action}",
"DownstreamPathTemplate": "/api/{controller}/{action}",
"DownstreamScheme": "https",
"LoadBalancer": "LeastConnection",
"UpstreamHttpMethod": [ "GET", "POST", "DELETE", "PUT" ],
"DownstreamHostAndPorts": [
{
"Host": "127.0.0.1",
"Port": 5001,
},
{
"Host": "127.00.1",
"Port": 5002,
}
],
}
限流可以防止上下游服務器因為過載而崩潰,可以使用RateLimitOptions來配置限流
{
"RateLimitOptions": {
"ClientWhitelist": [“127.0.0.1”],
"EnableRateLimiting": true,
"Period": "5s",
"PeriodTimespan": 1,
"Limit": 10
}
}
超過限流后會返回429狀態(tài)碼,并在在返回頭(Response Header)的Retry-After屬性中返回等待重置時間。
限流的默認提示,code碼,和限制標志都是可以自己配置的
{
"GlobalConfiguration": {
"BaseUrl":"www.baidu.com",
"RateLimitOptions": {
"DisableRateLimitHeaders": false,
"QuotaExceededMessage": "接口限流!",
"HttpStatusCode": 200,
"ClientIdHeader": "ClientId"
}
}
熔斷是在下游服務故障或者請求無響應的時候停止將請求轉發(fā)到下游服務。
{
"QoSOptions": {
"ExceptionsAllowedBeforeBreaking": 3,
"DurationOfBreak": 20,
"TimeoutValue": 5000
}
}
Ocelot可以對下游請求結果進行緩存,主要是依賴于CacheManager來實現(xiàn)的。
{
"FileCacheOptions": {
"TtlSeconds": 60,
"Region": "key"
}
}
Ocelot允許在請求下游服務之前和之后轉換Header.目前Ocelot只支持查找和替換.
如果們需要轉發(fā)給下游的Header重添加一個key/value
{
"UpstreamHeaderTransform": {
"demo": "xxxxxxx"
}
}
如果們需要在返回給客戶端的的Header中添加一個key/value
{
"DownstreamHeaderTransform": {
"demo": "xxxxxxx"
}
}
如果我們需要替換Heaher中某些值
{
//請求
"UpstreamHeaderTransform": {
"demo": "a,b"
},
//響應
"DownstreamHeaderTransform":
{
"demo": "a,b"
}
}
語法是{find},{replace}, 利用b取代a
在Header轉換中可以使用占位符
如果您想將location頭返回給客戶端,可能需要將location更改為Ocelot的地址而不是下游服務地址。 Ocelot可以使用以下配置實現(xiàn)。
{
"DownstreamHeaderTransform": {
"Location": "{DownstreamBaseUrl},{BaseUrl}"
},
}
給Header中添加下游地址
響應的Header中已經(jīng)替換成BaseUrl了
簡單的實現(xiàn)了通過網(wǎng)關來訪問api接口。ocelot功能遠不止這些,之后會實現(xiàn)與IdentityServer的認證鑒權。服務發(fā)現(xiàn)。
原文地址:https://www.cnblogs.com/linhuiy/p/12029652.html
意見反饋
×
Copyright © 1998-2019 甘肅信息港 All rights reserved.