使用 jersey-client 发送到码头的压缩 GZIP 请求不适用于 FormDataMultiPart
Posted
技术标签:
【中文标题】使用 jersey-client 发送到码头的压缩 GZIP 请求不适用于 FormDataMultiPart【英文标题】:Compressed GZIP Request sent to jetty using jersey-client is not working for FormDataMultiPart 【发布时间】:2021-06-11 18:54:13 【问题描述】:Jersey 客户端代码和 jetty.xml - ...
public class App
public static void main( String[] args ) throws FileNotFoundException
String token = "abc";
String file = "C:\\importedcerts\\TestpkgRoll.log";
String uri = "http://localhost:8008/api/arsys/v1/entry/myattach1";
Client client = ClientBuilder.newBuilder()
.register(EncodingFilter.class)
.register(GZipEncoder.class)
.property(ClientProperties.USE_ENCODING, "gzip")
.register(MultiPartFeature.class).build();
FormDataMultiPart formDataMultiPart = new FormDataMultiPart();
// json data
String json = " \"values\" : ";
json += "\"Submitter__c\" : \"Allen\", ";
json += "\"Short Description__c\" : \"testing 123\""
+ ", ";
json += "\"Attachment__c\" : \"testrollback.log\"";
json += " ";
formDataMultiPart.field("entry", json,
MediaType.APPLICATION_JSON_TYPE);
StreamDataBodyPart streamDataBodyPart = new StreamDataBodyPart("attach-Attachment__c", new FileInputStream(new File(file)), "testrollback.log", MediaType.APPLICATION_OCTET_STREAM_TYPE);
formDataMultiPart.bodyPart(streamDataBodyPart);
Builder request = client.target(uri).request(MediaType.APPLICATION_JSON);
request.header("Authorization", "AR-JWT " + token);
request.header("Content-Encoding", "gzip");
Response response = null;
response = request.method("POST",
// Entity.json(json));
Entity.entity(formDataMultiPart, MediaType.MULTIPART_FORM_DATA_TYPE));
System.out.println(response);
<Call name="insertHandler">
<Arg>
<New id="GzipHandler" class="org.eclipse.jetty.server.handler.gzip.GzipHandler">
<Set name="minGzipSize"><Property name="jetty.gzip.minGzipSize" deprecated="gzip.minGzipSize" default="0"/></Set>
<Set name="checkGzExists"><Property name="jetty.gzip.checkGzExists" deprecated="gzip.checkGzExists" default="false"/></Set>
<Set name="inflateBufferSize"><Property name="jetty.gzip.inflateBufferSize" default="1024"/></Set>
<Set name="excludedAgentPatterns">
<Array type="String">
<Item><Property name="jetty.gzip.excludedUserAgent" deprecated="gzip.excludedUserAgent" default=".*MSIE.6\.0.*"/></Item>
</Array>
</Set>
<Call name="addIncludedMimeTypes">
<Arg><Array type="String">
<Item>application/octet-stream</Item>
</Array></Arg>
</Call>
<Call name="addExcludedMimeTypes">
<Arg><Array type="String">
<Item>application/json</Item>
</Array></Arg>
</Call>
</New>
</Arg>
</Call>
...
但是,上述请求处理失败并出现异常 - org.jvnet.mimepull.MIMEParsingException:缺少开始边界
但是在我的客户中,当我如下注释时 ...
// .register(EncodingFilter.class)
// .register(GZipEncoder.class)
// .property(ClientProperties.USE_ENCODING, "gzip")
// request.header("Content-Encoding", "aplication/gzip, gzip");
... 我能够成功处理请求,如果上面的部分未注释,可能是什么问题,是客户端代码还是驻留在服务器上的 jetty.xml?
【问题讨论】:
【参考方案1】:您需要在 Jetty 上启用 GzipHandler
以使其处理压缩内容(请求或响应)。
您粘贴的那个 XML 块(来自 jetty-home 上的 gzip
模块)不是您应该编辑以启用 GzipHandler
,使用正确拆分 $jetty.home
和 $jetty.base
,启用 @987654326 @module,然后使用此拆分为您提供的适当属性对其进行配置。
默认情况下,请求正文内容的自动解压是关闭的。
但是将GzipHandler.setInflateBufferSize(int)
设置为正值,请求正文内容的解压(又名膨胀)将会发生。
【讨论】:
以上是关于使用 jersey-client 发送到码头的压缩 GZIP 请求不适用于 FormDataMultiPart的主要内容,如果未能解决你的问题,请参考以下文章
使用码头 Http 客户端发送 Https 请求中的 NullPointerException