我是 Protocol Buffers 和 gRPC 的新手。现在我正在尝试在 Go 中使用 grpc + grpc-gateway 构建客户端/服务器架构。
我试图遵循一些例子,但我总是遇到同样的问题。protoc
使用i run生成代码后go build
,我收到此错误:
proto/helloworld/hello_world.pb.gw.go:64:2: cannot use msg (type *HelloReply) as type protoreflect.ProtoMessage in return argument:
*HelloReply does not implement protoreflect.ProtoMessage (missing ProtoReflect method)
proto/helloworld/hello_world.pb.gw.go:98:2: cannot use msg (type *HelloReply) as type protoreflect.ProtoMessage in return argument:
*HelloReply does not implement protoreflect.ProtoMessage (missing ProtoReflect method)
这是go.mod
:
module github.com/riccardopedrielli/grpc-gateway-test
go 1.15
require (
github.com/golang/protobuf v1.4.3
github.com/grpc-ecosystem/grpc-gateway/v2 v2.2.0
google.golang.org/genproto v0.0.0-20210207032614-bba0dbe2a9ea
google.golang.org/grpc v1.35.0
google.golang.org/protobuf v1.25.0
)
这是hello_world.proto
:
syntax = "proto3";
package helloworld;
import "google/api/annotations.proto";
option go_package = "github.com/riccardopedrielli/grpc-gateway-test/proto/helloworld";
// Here is the overall greeting service definition where we define all our endpoints
service Greeter {
// Sends a greeting
rpc SayHello (HelloRequest) returns (HelloReply) {
option (google.api.http) = {
get: "/v1/example/echo/{name}"
};
}
}
// The request message containing the user's name
message HelloRequest {
string name = 1;
}
// The response message containing the greetings
message HelloReply {
string message = 1;
}
这是存储库的链接:https ://github.com/riccardodrielli/grpc-gateway-test
我看到生成的 go 文件之间的一个区别是它们正在导入不同的 protobuf 库。
由protoc-gen-go
进口产生的一种github.com/golang/protobuf/proto
。
由protoc-gen-grpc-gateway
进口产生的一种google.golang.org/protobuf/proto
。
这可能是问题的原因吗?
我仍然不清楚应该使用哪一个以及如何在两个生成器中强制使用相同的。
我是 grpc 新手,在这一点上很迷茫,所以我可以省略一些重要信息。任何建议都将受到欢迎。
谢谢