压缩 JSF 2.0 Ajax 请求?
有没有办法压缩所有 JSF Ajax 请求?
Is there a way to compress all JSF Ajax requests?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法压缩所有 JSF Ajax 请求?
Is there a way to compress all JSF Ajax requests?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
是的,只需在 servlet 容器级别打开 GZIP 压缩即可。具体如何执行取决于所使用的容器。例如,对于 Tomcat,您可以通过将
compression="on"
添加到/conf/server.xml
中感兴趣的 HTTP
。您还需要确保text/xml
是compressableMimeType
设置中的默认 mime 类型之一。Yes, just turn on GZIP compression at servletcontainer level. How exactly to do that depends on the container used. In case of for example Tomcat you can do that by adding
compression="on"
to the HTTP<Connector>
of interest in/conf/server.xml
. You also need to ensure thattext/xml
is one of the default mime types in thecompressableMimeType
setting.