Ocelot網關

来源:http://www.cnblogs.com/axzxs2001/archive/2017/12/08/8005041.html
-Advertisement-
Play Games

Ocelot是一個.net core框架下的網關的開源項目,下圖是官方給出的基礎實現圖,即把後臺的多個服務統一到網關處,前端應用:桌面端,web端,app端都只用訪問網關即可。 ...


Ocelot是一個.net core框架下的網關的開源項目,下圖是官方給出的基礎實現圖,即把後臺的多個服務統一到網關處,前端應用:桌面端,web端,app端都只用訪問網關即可。

 

Ocelot的實現原理就是把客戶端對網關的請求(Request),按照configuration.json的映射配置,轉發給對應的後端http service,然後從後端http service獲取響應(Response)後,再返回給客戶端。當然有了網關後,我們可以在網關這層去做統一驗證,也可以在網關處統一作監控。

接下來做個Demo

新建三個asp.net core web aip項目:

OcelotGateway網關項目,埠是5000

DemoAAPI項目A,埠是5001

DemoBAPI項目B,埠是5002

(註:埠可以在每個項目的Properties下的launchSettings.json中修改,發佈後的埠可以在Program.cs中用UseUrls(“http://*:5000”)來修改)

對於OcelotGateway:

引用Ocelot的Nuget包:

視圖->其他視窗->程式包管理控制台:Install-Package Ocelot

或項目右鍵“管理Nuget程式包”,在瀏覽里查找Ocelot進行安裝

在OcelotGateway項目中添加一個configuration.json文件,關把它的屬性“複製到輸出目錄”,設成“始終複製”,內容如下:

{

  "ReRoutes": [

    {

      "DownstreamPathTemplate": "/demoaapi/values",

      "DownstreamScheme": "http",

      "DownstreamPort": 5001,

      "DownstreamHost": "localhost",

      "UpstreamPathTemplate": "/demoaapi/values",

      "UpstreamHttpMethod": [ "Get" ],

      "QoSOptions": {

        "ExceptionsAllowedBeforeBreaking": 3,

        "DurationOfBreak": 10,

        "TimeoutValue": 5000

      },

      "HttpHandlerOptions": {

        "AllowAutoRedirect": false,

        "UseCookieContainer": false

      },

      "AuthenticationOptions": {

        "AuthenticationProviderKey": "",

        "AllowedScopes": []

      }

    },

    {

      "DownstreamPathTemplate": "/demobapi/values",

      "DownstreamScheme": "http",

      "DownstreamPort": 5002,

      "DownstreamHost": "localhost",

      "UpstreamPathTemplate": "/demobapi/values",

      "UpstreamHttpMethod": [ "Get" ],

      "QoSOptions": {

        "ExceptionsAllowedBeforeBreaking": 3,

        "DurationOfBreak": 10,

        "TimeoutValue": 5000

      },

      "HttpHandlerOptions": {

        "AllowAutoRedirect": false,

        "UseCookieContainer": false

      },

      "AuthenticationOptions": {

        "AuthenticationProviderKey": "",

        "AllowedScopes": []

      }

    }

  ]

}

接下來對OcelotGateway的Program.cs進行改造 

 1 using Microsoft.AspNetCore.Hosting;
 2 
 3 using Microsoft.Extensions.Configuration;
 4 
 5 using Microsoft.Extensions.DependencyInjection;
 6 
 7  
 8 
 9 namespace OcelotGateway
10 
11 {
12 
13     public class Program
14 
15     {
16 
17         public static void Main(string[] args)
18 
19         {
20 
21             BuildWebHost(args).Run();
22 
23         }
24 
25         public static IWebHost BuildWebHost(string[] args)
26 
27         {
28 
29             IWebHostBuilder builder = new WebHostBuilder();
30 
31             //註入WebHostBuilder
32 
33             return builder.ConfigureServices(service =>
34 
35                 {
36 
37                     service.AddSingleton(builder);
38 
39                 })
40 
41                 //載入configuration配置文人年
42 
43                 .ConfigureAppConfiguration(conbuilder =>
44 
45                 {
46 
47                     conbuilder.AddJsonFile("configuration.json");
48 
49                 })
50 
51                 .UseKestrel()
52 
53                 .UseUrls("http://*:5000")
54 
55                 .UseStartup<Startup>()
56 
57                 .Build();
58 
59         }
60 
61     }
62 
63 }
View Code

同時,修改Startup.cs

 1 using Microsoft.AspNetCore.Builder;
 2 
 3 using Microsoft.AspNetCore.Hosting;
 4 
 5 using Microsoft.Extensions.Configuration;
 6 
 7 using Microsoft.Extensions.DependencyInjection;
 8 
 9 using Ocelot.DependencyInjection;
10 
11 using Ocelot.Middleware;
12 
13  
14 
15 namespace OcelotGateway
16 
17 {
18 
19     public class Startup
20 
21     {
22 
23         public Startup(IConfiguration configuration)
24 
25         {
26 
27             Configuration = configuration;
28 
29         }
30 
31         public IConfiguration Configuration { get; }     
32 
33         public void ConfigureServices(IServiceCollection services)
34 
35         {      
36 
37             //註入配置文件,AddOcelot要求參數是IConfigurationRoot類型,所以要作個轉換
38 
39             services.AddOcelot(Configuration as ConfigurationRoot);
40 
41         }
42 
43         public  void Configure(IApplicationBuilder app, IHostingEnvironment env)
44 
45         {
46 
47             //添加中間件
48 
49             app.UseOcelot().Wait();
50 
51         }
52 
53     }
54 
55 }
View Code

為了測試數據好看,我們把DemoAAPI項目和DemoBAPI項目的ValuesController作一下修改:    

 1 [Route("demoaapi/[controller]")]
 2 
 3     public class ValuesController : Controller
 4 
 5     {       
 6 
 7         [HttpGet]
 8 
 9         public IEnumerable<string> Get()
10 
11         {
12 
13             return new string[] { "DemoA服務", "請求" };
14 
15         }
16 
17 //……
18 
19 }
20 
21  
22 
23     [Route("demobapi/[controller]")]
24 
25     public class ValuesController : Controller
26 
27     {       
28 
29         [HttpGet]
30 
31         public IEnumerable<string> Get()
32 
33         {
34 
35             return new string[] { "DemoB服務", "請求" };
36 
37         }
38 
39 //……
40 
41 }
View Code

最後在解決方案屬性->多個啟動項目中,把DemoAAPI,DemoBAPI,OcelotGateway都設成啟動,開始啟動解決方案,效果如下圖 


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

-Advertisement-
Play Games
更多相關文章
  • using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u ...
  • 使用.net內置的壓縮解壓縮程式,解壓程式集嵌入的ZIP資源文件 ...
  • 小伙伴們在使用ICP提供的各種能力進行集成開發時常常會遇到一些技術上的困擾,例如ICP中很多介面是通過OCX控制項的方式提供的,如何調用這些介面,就成了一個不大不小的問題,畢竟開髮指南上可沒這些內容啊~彆著急,今天我就給大家介紹一下C#中調用OCX介面的常用方法。^_^y原文鏈接 http://dev... ...
  • 本文為原創文章、源代碼為原創代碼,如轉載/複製,請在網頁/代碼處明顯位置標明原文名稱、作者及網址,謝謝! 開發工具:VS2017 語言:C# DotNet版本:.Net FrameWork 4.0及以上 一、使用的WIN32 API有兩個,一個為ReleaseCapture,另外一個為SendMes ...
  • 按標題的要求將一個字元轉換為整數。實現此功能,也有好幾個方法方法一:Convert.ToInt32(string); 運行代碼: 方法二: int.Parse(object): 運行結果: 這個字元正好是數字的字元串,使用int.Parse()是沒有任何問題,但是如果這個是非數字的字元串呢? 運行時 ...
  • You'll have to perform a number of steps that are normally taken of automatically when you use the toolbox. First and foremost, you have to run the Ax... ...
  • 網關的作用之一,就是有統一的數據出入口,基於這個功能,我們可以在網關上配置監控,從而把所有web服務的請求應答基本數據捕獲並展顯出來。 ...
  • 一篇,我們創建了OcelotGateway網關項目,DemoAAPI項目,DemoBAPI項目,為了驗證用戶並分發Token,現在還需要添加AuthenticationAPI項目,也是asp.net core web api項目,整體思路是,當用戶首次請求(Request)時web服務,網關會判斷本... ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...