
grpc
jinyidong
这个作者很懒,什么都没留下…
展开
-
go之grpc
1、安装 install grpc go get -u google.golang.org/grpc install protocol buffer v3 PS:本文基于Window64安装,下载地址:https://github.com/protocolbuffers/protobuf/releases 将解压后的protoc.exe路径加入PATH环境变量中 install the ...原创 2019-02-24 15:42:27 · 368 阅读 · 0 评论 -
通过envoy实现http/json到grpc的转码
1、流程 2、Demo 2.1、grpc server实现 proto syntax = "proto3"; package helloworld; import "google/api/annotations.proto"; service Greet { rpc Say (HelloWorldRequest) returns (HelloWorldResponse) ...原创 2019-02-25 18:01:48 · 3148 阅读 · 0 评论