Golang安装使用gRPC框架

安装Protobuf

下载protobuf安装程序。
装protoc.exe放入 $GOROOT/bin 目录下。

安装grpc相关功能

go get google.golang.org/grpc

由于被墙执行如下命令后出错,可以使用手动方法安装比较麻烦哦。
在$GOPATH/src目录创建 golang.org/x 、google.golang.org 目录

1. gRPC

git clone https://github.com/grpc/grpc-go

重命名为grpc,放在$GOPATH/src/google.golang.org

2. genproto

git clone https://github.com/google/go-genproto

重命名为genproto,放在$GOPATH/src/google.golang.org

3. text

git clone https://github.com/golang/text.git

放在$GOPATH/src/golang.org/x

4. net

git clone https://github.com/golang/net.git

放在$GOPATH/src/golang.org/x

安装proto 、protoc-gen-go、gRPC

go get -u github.com/golang/protobuf/proto
go get -u github.com/golang/protobuf/protoc-gen-go
go install google.golang.org/grpc

验证gRPC

生成执行代码

目录切换到$GOPATH\google.golang.org\grpc\examples\helloworld\helloworld

protoc   --go_out=plugins=grpc:./greeter/ ./helloworld.proto

启动gRPC Server

目录切换到$GOPATH\google.golang.org\grpc\examples\helloworld\greeter_server

go run main.go

启动gRPC客户端

目录切换到$GOPATH\google.golang.org\grpc\examples\helloworld\greeter_client

go run main.go

执行完能看到如下,说明成功了

2019/09/19 11:30:32 Greeting: Hello world

你可能感兴趣的:(go)