如何在 Google App Engine (Java) 上部署 gRPC 后端

How to deploy gRPC back end on Google App Engine (Java)

我想使用 gRPC 服务作为部署在 GAE 上的后端。但相关资料不多。我发现的关于 gRPC 和最近的 GAE 版本的最大信息是 Google Cloud Platform Blog,这表明最近的主要版本完全支持 gRPC。

但是我不明白"full support"是什么意思,具体是怎么实现的,因为没有详细的资料,教程,示例。

那么,在 GAE(标准环境或灵活环境)中使用 gRPC 的额外要求是什么?

将 gRPC 与 GAE Java8 一起使用不需要任何特殊的东西。只需使用 Netty 传输并确保像平常一样包含 netty-tcnative-boringssl-static。

reply Dimitry received on Google Groups is valid. A useful document to be used in conjunction with the answer would be: "Getting Started with gRPC on Compute Engine”。