将 gzip 与 GWT 集成

发布于 2024-10-19 07:30:17 字数 126 浏览 0 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

水波映月 2024-10-26 07:30:17

如果您使用的是 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.

勿忘初心 2024-10-26 07:30:17

一般来说,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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文