GZIP PlayFramework 2.0中的响应主体

rOr*_*lig 5 gzip playframework playframework-2.0

我正在使用Playframework 2.x应用程序.我的应用程序中的控制器将JSON响应返回给浏览器/端点.我想知道是否有一种简单的方法来启用响应体的GZIP压缩.

vir*_*yes 2

gzip'ing 几乎是一个完整的蛋糕,带有 Apache 前端。

在 Apache 2.4 上,Location使用一组基本内容类型通过块进行 gzip 处理可能如下所示:

<Location />
  ...
  AddOutputFilterByType DEFLATE text/css application/x-javascript text/x-component text/html text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/x-icon
  SetOutputFilter DEFLATE
</Location>
Run Code Online (Sandbox Code Playgroud)