tangs b030ce89ca openbilibili | %!s(int64=5) %!d(string=hai) anos | |
---|---|---|
.. | ||
helloworld | %!s(int64=5) %!d(string=hai) anos | |
oauth | %!s(int64=5) %!d(string=hai) anos | |
route_guide | %!s(int64=5) %!d(string=hai) anos | |
rpc_errors | %!s(int64=5) %!d(string=hai) anos | |
README.md | %!s(int64=5) %!d(string=hai) anos | |
gotutorial.md | %!s(int64=5) %!d(string=hai) anos |
For this sample, we've already generated the server and client stubs from helloworld.proto.
$ go help gopath
$ # ensure the PATH contains $GOPATH/bin
$ export PATH=$PATH:$GOPATH/bin
$ go get -u google.golang.org/grpc/examples/helloworld/greeter_client
$ go get -u google.golang.org/grpc/examples/helloworld/greeter_server
$ greeter_server &
$ greeter_client
Install protobuf compiler
Install the protoc Go plugin
$ go get -u github.com/golang/protobuf/protoc-gen-go
$ go generate google.golang.org/grpc/examples/helloworld/...
Or run protoc
command (with the grpc plugin)
$ protoc -I helloworld/ helloworld/helloworld.proto --go_out=plugins=grpc:helloworld