1

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

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

4

1 回答 1

6

你可以这样做:

文件: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>
于 2014-03-13T14:59:24.877 回答