gpt4 book ai didi

http - 以编程方式设置 Jetty GzipHandler

转载 作者:可可西里 更新时间:2023-11-01 15:26:36 26 4
gpt4 key购买 nike

我在玩 Jetty GzipHandler而且它的工作方式似乎很奇怪:它只压缩已经压缩的文件。

我的整个设置是

GzipHandler gzipHandler = new GzipHandler();
gzipHandler.setHandler(myHandler);
server.setHandler(gzipHandler);

浏览器 (Chromium) 总是发送一个 header 包含

Accept-Encoding:gzip,deflate,sdch

所以根据文档

GZIP Handler This handler will gzip the content of a response if:

  • The filter is mapped to a matching path
  • The response status code is >=200 and <300
  • The content length is unknown or more than the minGzipSize initParameter or the minGzipSize is 0 (default)
  • The content-type is in the comma separated list of mimeTypes set in the mimeTypes initParameter or if no mimeTypes are defined the content-type is not "application/gzip"
  • No content-encoding is specified by the resource

它应该对两者都有效。我只是不确定 path部分,但没有指定任何内容,我希望它对两者都适用或都不适用。

我用了window.location.reload(true)强制重新加载。 header 相当长,所以我将它们链接起来:csspng .

我尝试设置一些属性,但没有成功。我是否应该找到 jetty-servlets-9.1.3.v20140225-sources.jar ,我会调试它。问题是:为什么 GzipHandler决定只压缩压缩文件?它是完全确定的:jpgpng被压缩(无论多小),而其他文件则不会。

更新

通过setMimeTypes我可以排除图像。我调试了它,但我仍然不知道为什么其他静态资源永远不会被压缩。我仔细检查了 myHandler统一对待它们(它们都直接从预先计算的 Map<String, byte[]> 得到服务)。

最佳答案

以下是我在 Jetty 9.3.7 中配置 GzipHandler 的方式:

GzipHandler gzipHandler = new GzipHandler();
gzipHandler.setIncludedMimeTypes("text/html", "text/plain", "text/xml",
"text/css", "application/javascript", "text/javascript");
gzipHandler.setHandler(myHandler);
handlerList.addHandler(gzipHandler);

在这种情况下,myHandlerResourceHandler 的一个实例。默认情况下,Gzip 处理程序仅对响应代码在 200 范围内的 GET 请求进行 gzip 响应。

关于http - 以编程方式设置 Jetty GzipHandler,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24521426/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com