处理注释服务中的内容编码GZIP

发布于 2025-01-23 00:24:23 字数 533 浏览 0 评论 0原文

我有带注释的服务。一些客户以纯文本发布了带有内容的请求。其他客户端发布请求GZZ,并包括标题内容编码:GZIP

GZPICPENT请求未能将其解码为原始值,因为它们不是首先解压缩。

我如何装饰我的动作,以便根据标头值有选择地将身体炮圈?

  @Post("/foo/bar)
  @Consumes("application/x-protobuf")
  @Produces("application/x-protobuf")
  fun setFooBar(
    request: SetFooBarRequest,
    headers: RequestHeaders,
  ): SetFooBarResponse { ... }

使用协议消息标签失败具有无效的电线类型。(即此BLOB不是触发值),而仅适用于content-content-ongoding的请求:gzip

I have an annotated service. Some clients POST requests with the content in plaintext. Other clients POST requests gzipped and include the header Content-Encoding: gzip.

The gzipped requests are failing to be decoded as proto values, because they are not unzipped first.

How do I decorate my action so that it selectively gunzips the body based upon the header value?

  @Post("/foo/bar)
  @Consumes("application/x-protobuf")
  @Produces("application/x-protobuf")
  fun setFooBar(
    request: SetFooBarRequest,
    headers: RequestHeaders,
  ): SetFooBarResponse { ... }

fails with Protocol message tag had invalid wire type. (ie this blob is not a proto value), but only for requests where Content-Encoding: gzip

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡淡绿茶香 2025-01-30 00:24:24

自动解码gzipdeflatebrotli默认情况下。您可以使用serverbuilder.decorate()应用decodingService
例如:

Server.builder()
.annotatedService(new MyProtobufService())
.decorate(DecodingService.newDecorator()) //

DecodingService automatically decodes gzip, deflate and brotli by default. You can apply DecodingService using ServerBuilder.decorate().
For example:

Server.builder()
      .annotatedService(new MyProtobufService())
      .decorate(DecodingService.newDecorator()) // ????????????
      .build();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文