- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我在玩 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 相当长,所以我将它们链接起来:css和 png .
我尝试设置一些属性,但没有成功。我是否应该找到 jetty-servlets-9.1.3.v20140225-sources.jar
,我会调试它。问题是:为什么 GzipHandler
决定只压缩压缩文件?它是完全确定的:jpg
和 png
被压缩(无论多小),而其他文件则不会。
通过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);
在这种情况下,myHandler
是 ResourceHandler
的一个实例。默认情况下,Gzip 处理程序仅对响应代码在 200 范围内的 GET
请求进行 gzip 响应。
关于http - 以编程方式设置 Jetty GzipHandler,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24521426/
我在玩 Jetty GzipHandler而且它的工作方式似乎很奇怪:它只压缩已经压缩的文件。 我的整个设置是 GzipHandler gzipHandler = new GzipHandler();
我正在尝试配置 Jetty 9 服务器以提供 Gzip 压缩数据。不幸的是,我找不到适合我的用例的任何描述。我想我必须使用新的 GzipHandler 而不是 GzipFilter(从 Jetty 9
我是一名优秀的程序员,十分优秀!