Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有人有一个在java中使用gRPC在客户端(存根)和服务器之间传播io.grpc.Context的工作示例?
我的理解是这是不可能的,我必须改用元数据。我对么?
在线我只找到了使用Header而不是Context的示例。
谢谢!
io.grpc.Context仅用于本地传播,例如线程之间甚至在同一线程上。gRPC 故意不自动从中传播项目。您可以使用 aClientInterceptor将值从 复制Context到Metadata。
io.grpc.Context
ClientInterceptor
Context
Metadata