处理注释服务中的内容编码GZIP
我有带注释的服务。一些客户以纯文本发布了带有内容的请求。其他客户端发布请求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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
自动解码
gzip
,deflate
和brotli
默认情况下。您可以使用serverbuilder.decorate()
应用decodingService
。例如:
DecodingService automatically decodes
gzip
,deflate
andbrotli
by default. You can applyDecodingService
usingServerBuilder.decorate()
.For example: