在Java 1.8.0_45-b14
上运行的Spring MVC Jetty 9.3.0.v20150612
后端可以很好地处理未压缩的请求,但无法接受压缩的请求。
我遵循了Gzip Handler配置说明here,确保POST
请求也支持这些说明。虽然它没有说这种配置完全适用于请求......但它可能仅用于响应。
etc / jetty-gzip.xml -
<Configure id="Server" class="org.eclipse.jetty.server.Server">
<Get id="next" name="handler" />
<Set name="handler">
<New id="GzipHandler" class="org.eclipse.jetty.server.handler.gzip.GzipHandler">
<Set name="handler"><Ref refid="next" /></Set>
<Set name="minGzipSize"><Property name="jetty.gzip.minGzipSize" deprecated="gzip.minGzipSize" default="2048"/></Set>
<Set name="checkGzExists"><Property name="jetty.gzip.checkGzExists" deprecated="gzip.checkGzExists" default="false"/></Set>
<Set name="compressionLevel"><Property name="jetty.gzip.compressionLevel" deprecated="gzip.compressionLevel" default="-1"/></Set>
<Set name="excludedAgentPatterns">
<Array type="String">
<Item><Property name="jetty.gzip.excludedUserAgent" deprecated="gzip.excludedUserAgent" default=".*MSIE.6\.0.*"/></Item>
</Array>
</Set>
<Set name="includedMethods">
<Array type="String">
<Item>GET</Item>
<Item>POST</Item>
</Array>
</Set>
<Set name="includedPaths">
<Array type="String">
<Item>/*</Item>
</Array>
</Set>
</New>
</Set>
</Configure>
在web.xml中 -
<filter>
<filter-name>GzipFilter</filter-name>
<filter-class>org.eclipse.jetty.servlets.GzipFilter</filter-class>
<init-param>
<param-name>mimeTypes</param-name>
<param-value>text/html,text/plain,text/xml,application/xhtml+xml,text/css,application/javascript,image/svg+xml,application/json</param-value>
</init-param>
<init-param>
<param-name>minGzipSize</param-name>
<param-value>500</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>GzipFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
Android客户端会发生这种情况,并且还会使用HTTP客户端应用程序(Paw)进行重现,这是一个请求示例 -
POST /report?v=1 HTTP/1.1
Content-Encoding: gzip
Content-Type: application/json
Host: 10.0.0.1:8080
Connection: close
User-Agent: Paw/2.2.2 (Macintosh; OS X/10.10.4) GCDHTTPRequest
Content-Length: 5845
xí\MÇuÝûWÔE(É`_¦(<EtD&)%:¦OTè.EôÔU53¬¼ð"ÇYfÆ'®ì/áÿʽ¯ª
r(ʲä#èúz÷Ý÷^5èýR;Úå;ÕÎÿöºÊuW«ß«v«ß¿ø³:VÕ)Õ .. BINARY ...
回应 -
HTTP/1.1 400 Bad Request
Content-Type: text/html;charset=iso-8859-1
Cache-Control: must-revalidate,no-cache,no-store
Content-Length: 242
Connection: close
Jetty甚至支持压缩请求吗? (找不到明确的证据)
我的配置有什么问题?
答案 0 :(得分:6)
首先,从您的web.xml it's not relevant anymore (starting with Jetty 9.3.0)
中删除GzipFilter
GzipHandler
是所有旧的基于过滤器的gzip过滤器(GzipFilter
,AsyncGzipFilter
和IncludableGzipFilter
)的新替代品。
它被设计为在连接流更基础的级别上运行,这是基于过滤器的方法在异步I / O领域无法做到的。
据说,Jetty 9.3.0中的GzipHandler
只有针对Response主体内容设计的实现。 (就像之前的GzipFilters一样)
然而,我们学到的是,有些项目扩展了我们的GzipFilter以添加Request内容体gzip处理。我们从GzipFilter到GzipHandler的变化破灭了。
我们在https://bugs.eclipse.org/471577(DropWizard为他们自己的BiDiGzipFilter扩展了GzipFilter)有一个公开的错误
我们认识到Gzip在请求内容体上可能有一些有用的功能,但我们还没有实现。 (提示,提示,删除我们的补丁)