溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

.Net?Core微服務(wù)rpc框架GRPC通信如何運(yùn)用

發(fā)布時(shí)間:2022-01-11 13:40:31 來(lái)源:億速云 閱讀:150 作者:iii 欄目:開(kāi)發(fā)技術(shù)

本文小編為大家詳細(xì)介紹“.Net Core微服務(wù)rpc框架GRPC通信如何運(yùn)用”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“.Net Core微服務(wù)rpc框架GRPC通信如何運(yùn)用”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來(lái)學(xué)習(xí)新知識(shí)吧。

服務(wù)端

首先要拿出之前寫好的proto文件,然后修改兩個(gè)屬性:

Build Action => Protobuf compiler

gRpc Stub Classes => Server only

如圖:

.Net?Core微服務(wù)rpc框架GRPC通信如何運(yùn)用

當(dāng)然也可以在項(xiàng)目文件里看到它:

.Net?Core微服務(wù)rpc框架GRPC通信如何運(yùn)用

然后重新生成項(xiàng)目 ,會(huì)自動(dòng)根據(jù)proto文件生成server端的文件。

引用

經(jīng)過(guò)剛才,已經(jīng)生成了對(duì)應(yīng)的服務(wù),我們可以直接在代碼里調(diào)用。

這是之前寫好的proto:

syntax = "proto3";

option csharp_namespace = "gRPCApiDemo.Protos";

package Demo;

service MyMath{
    rpc MathAdd (AddRequest) returns (AddRespones) {}
}

message AddRequest{
    int32 a=1;
    int32 b=2;
}

message AddRespones{
    int32 a=1;
}

生成以后,會(huì)有一個(gè)MyMath.MyMathBase這個(gè)類,我們來(lái)繼承一下:

.Net?Core微服務(wù)rpc框架GRPC通信如何運(yùn)用

注意看命名空間,這是剛才項(xiàng)目生成以后根據(jù)proto生成的。

現(xiàn)在來(lái)重寫一下里面的方法(下圖是生成,也可以手動(dòng)寫):

.Net?Core微服務(wù)rpc框架GRPC通信如何運(yùn)用

根據(jù)proto文件可知:

AddRequest包含兩個(gè)int參數(shù):A、B

AddRespones包含一個(gè)名為A的int參數(shù)

那我們把AB相加然后返回:

using Grpc.Core;
using gRPCApiDemo.Protos;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace gRPCApiDemo.Grpc
{
    public class GrpcServiceMath : MyMath.MyMathBase
    {
        public override Task<AddRespones> MathAdd(AddRequest request, ServerCallContext context)
        {
            var respones = new AddRespones
            {
                A = request.A + request.B
            };
            return Task.FromResult(respones);
        }
    }
}

再然后進(jìn)入StartUp設(shè)置一下:

 app.UseHttpsRedirection();

app.UseEndpoints(endpoints =>
{
    endpoints.MapGrpcService<MathServices>();
});

服務(wù)端到這里就寫完了。

如果寫了更多service,那就需要在這里聲明更多的實(shí)現(xiàn)類;而且https是必須的。

客戶端

我準(zhǔn)備了一個(gè)空白項(xiàng)目。接下來(lái)你可以把之前服務(wù)端的proto文件拷貝過(guò)來(lái),或者選擇重新寫一份,然后修改屬性以后生成一下項(xiàng)目:

.Net?Core微服務(wù)rpc框架GRPC通信如何運(yùn)用

其實(shí)還有一個(gè)選項(xiàng)是Client and Server,一次生成客戶端和服務(wù)端。

接下來(lái)注入靈魂:

services.AddGrpcClient<MyMath.MyMathClient>(o => o.Address = new Uri("https://localhost:5001"));

MyMath是proto里聲明的服務(wù),MyMathClient是剛才生成的,里面的Uri是服務(wù)端所在的域名。

因?yàn)間Rpc是基于http/2,而想要以http/2訪問(wèn)有個(gè)比較麻煩的證書(shū)要搞,如果不想搞證書(shū)可以接著添加這一行:

AppContext.SetSwitch("System.Net.Http.SocketsHttpHandler.Http2UnencryptedSupport", true);

當(dāng)然,別忘了下面https的設(shè)置。

再接著我們新建一個(gè)controller,直接調(diào)用方法:

public class IndexController : Controller
    {
        private readonly MyMath.MyMathClient _client;

        public IndexController(MyMath.MyMathClient client)
        {
            this._client = client;
        }

        public async Task<int> Add(int a, int b)
        {
            var respones = await _client.MathAddAsync(new AddRequest()
            {
                A = a,
                B = b
            });
            return respones.A;
        }
    }

MyMathClient就和MyMathBase一樣,也是自動(dòng)生成的。而且現(xiàn)在這個(gè)版本會(huì)自動(dòng)生成rpc調(diào)用的異步版本,就像代碼里的MathAddAsync。

我們跑一下看看:

.Net?Core微服務(wù)rpc框架GRPC通信如何運(yùn)用

完美。

源碼地址

最后小小的提醒一下,server和client端必須要有https,不然的話:

.Net?Core微服務(wù)rpc框架GRPC通信如何運(yùn)用

讀到這里,這篇“.Net Core微服務(wù)rpc框架GRPC通信如何運(yùn)用”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過(guò)才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI