0

我是 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 新手,在这一点上很迷茫,所以我可以省略一些重要信息。任何建议都将受到欢迎。

谢谢

4

2 回答 2

2

好的,我解决了这个问题。

我是protoc通过 snap 安装的,稳定频道有版本3.11.4

现在我升级到3.14.0并且一切正常。

于 2021-02-11T13:40:57.307 回答
0

为了生成存根,我们可以使用protocbufprotoc是业内广泛使用的比较经典的代经验。尽管如此,它的学习曲线还是相当陡峭。buf是一款考虑到用户体验和速度的新工具。它还提供 linting 和破坏性更改检测,而有些东西protoc没有提供。

您应该查看有关 gRPC-Gateway 的教程系列,即https://grpc-ecosystem.github.io/grpc-gateway/docs/tutorials/。另外,你可以参考我的简单的hello world程序,它使用了gRPC-Gateway,即https://github.com/iamrajiv/helloworld-grpc-gateway

于 2021-05-02T07:12:52.840 回答