为 Jboss 启用 gzip 压缩
Jboss 5.1.0 的 gzip 压缩是如何启用的?
在 tomcat http 连接器内对吗?我不记得这个文件存储在哪里,server.xml?
How is gzip compression for Jboss 5.1.0 enabled?
Within the tomcat http connector right? I cant remember where this file is stored, server.xml?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
编辑 jboss\server\default\deploy\jbossweb.sar\server.xml
编辑:
更像这样:
您可以参考连接器配置信息以获取更多详细信息,请参阅:
http://tomcat.apache.org/tomcat-5.5-doc/config /http.html
edit jboss\server\default\deploy\jbossweb.sar\server.xml
Edit this:
to be more like this:
You can refer to connector config info for further details please see:
http://tomcat.apache.org/tomcat-5.5-doc/config/http.html
要在 JBoss 7.1.1 中添加 gzip 压缩,您可以编辑standalone/configuration/standalone.xml 并添加:
重新启动服务器并使用开发人员工具或在 HTTP 标头中检查是否已启用。
To add gzip compression in JBoss 7.1.1, you can edit standalone/configuration/standalone.xml and add:
Restart the server and check with developer tools or in the HTTP header if it is enabled.
该文件位于 server.xml 下,并且您正确地指出必须更新 http 连接器。
以下链接是 tomcat 的信息,但同样适用于 JBoss,除了 server.xml 文件的位置。 下的server.xml
我相信您需要更新deploy\jbossweb.sar\ http://viralpatel.net/blogs/2008/11/enable-gzip-compression-in-tomcat.html
The file is under server.xml and you are correct in stating that you have to updated the http connector.
Following link is info for tomcat, but same applies to JBoss except location of server.xml file. I believe you need to update the server.xml under deploy\jbossweb.sar\
http://viralpatel.net/blogs/2008/11/enable-gzip-compression-in-tomcat.html
在 Jboss EAP 7.0 中,这对我有用:
编辑:Standalone.xml
重新启动服务器
In Jboss EAP 7.0 this worked for me:
edit: Standalone.xml
Restart the server