如何为Jboss EAP6.2启用页面压缩

时间:2014-03-13 09:56:47

标签: http-compression jboss-eap-6

如何为JBoss EAP 6.2启用页面/ gzip压缩?

我在网上找到了旧的JBoss AS的信息,但没有为EAP找到信息。

1 个答案:

答案 0 :(得分:6)

您可以通过以下方式执行此操作:

file:standalone.xml(JBoss AS 7+)

位置:在

之后
<extensions>

</extensions>

<system-properties>
    <property name="org.apache.coyote.http11.Http11Protocol.COMPRESSION" value="on"/>
    <property name="org.apache.coyote.http11.Http11Protocol.COMPRESSION_MIME_TYPES" value="text/javascript,text/css,text/html,text/xml,text/json"/>  <!-- add other content types you want to gzip -->
</system-properties>