在 tomcat/conf/server.xml 中,我启用了 gzip 压缩,如下所示。
compression="on" compressableMimeType="application/json" compressionMinSize="2048"
当客户端在请求标头中明确传递“Accept-Encoding:gzip,deflate”时,我想检查任何解决方案,然后使用 gzip 压缩的 tomcat retunr 响应有效负载。
否则,当请求头中没有更多的键值时,tomcat默认返回没有gzip压缩的payload。
可能吗?