将 gzip 与 GWT 集成
我想在 GWT 中使用 gzip
请建议我如何使用 gzip 压缩我的 GWT nocache.js、cache.html 和 gwt.rpc
文件
请帮助我
谢谢
I want to use gzip with GWT
Please suggest how do i compress my GWT nocache.js,cache.html and gwt.rpc
files using gzip
Please help me
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是 GWT 2.1,请添加到您的.gwt.xml 文件 - GWT 然后将预压缩(使用 gzip)所有静态资源。
Jetty (6&7) 将自动提供 gzip 压缩版本(如果可用)...
GWT 的 RPCServlet 检查客户端是否可以处理 gzip 压缩内容,如果可以,它将即时进行 gzip 压缩。
If you're using GWT 2.1 add <inherits name="com.google.gwt.precompress.Precompress"/> to your <Module>.gwt.xml file - GWT will then prescompress (using gzip) all static resources.
Jetty (6&7) will automatically serve the gzipped version if available...
GWT's RPCServlet checks if the client can handle gzipped content if it can it will be gzipped on the fly.
一般来说,gzip 在托管文件的服务器上启用,您可以对站点上的所有文件执行此操作,而不仅仅是这 3 个文件。
此站点可帮助您测试站点上是否启用了 gzip:http://www.whatsmyip.org/http_compression/
以下是如何使用 Apache Web 服务器打开 gzip:http://httpd.apache.org/docs/2.0/mod/mod_deflate.html
Generally, gzip is enabled on the server that your files are being hosted on, and you can do it for all files on your site rather than just those 3.
This site helps you test whether gzip is enabled on your site: http://www.whatsmyip.org/http_compression/
Here's how to turn gzip on with the Apache web server: http://httpd.apache.org/docs/2.0/mod/mod_deflate.html