共计 634 个字符,预计需要花费 2 分钟才能阅读完成。
参照 golang 开发一个简略的 grpc
残缺代码:github.com/cuishuang/grpcdemo, 此处仅须要应用 gRPC Server,不须要 Client 局部
切到 helloservice 目录执行 go run main/main.go
grpcui
fullstorydev/grpcui
go install github.com/fullstorydev/grpcui/cmd/grpcui@latest
grpcui -plaintext 127.0.0.1:1234
参考调试工具_微服务实战之 Go gRPC 调试工具, 在源码中加一行 reflection.Register(s)
重新启动 Server
grpcurl
grpcui 底层其实就是 grpcurl
go install github.com/fullstorydev/grpcurl/cmd/grpcurl@latest
或 brew install grpcurl
或应用 Docker
# Download image
docker pull fullstorydev/grpcurl:latest
# Run the tool
docker run fullstorydev/grpcurl api.grpc.me:443 list
grpcurl -plaintext localhost: 端口号 list
不如 grpcui 直观
Postman
三種好用的 gRPC 測試工具
另外相似的工具还有 Evans,BloomRPC (超实用的 gRPC 客户端调试工具)
本文由 mdnice 多平台公布
正文完