美文网首页中年危机程序猿的日常
Java web application 使用 ziplet 来

Java web application 使用 ziplet 来

作者: 脱非入欧 | 来源:发表于2017-03-07 14:45 被阅读64次

    目前除了 Spring 4 的 boot 和 Spring 5 里提供了相关应用层面的 Gzip 压缩,其他大部分时候都是通过容器(Tomcat、WAS、Jetty等)来开启 Gzip 压缩,剩下的都是 out of date 的自己写一个 filter 来实现这个功能。这里介绍一个开源的第三方库来实现这个功能。

    加入依赖

    使用 maven 导入依赖。

    <!-- https://mvnrepository.com/artifact/com.github.ziplet/ziplet -->
    <dependency>
        <groupId>com.github.ziplet</groupId>
        <artifactId>ziplet</artifactId>
        <version>2.1.2</version>
    </dependency>
    

    其他方式可以在 mvnrepository 找到。

    增加 filter 配置

    在 web.xml 中增加配置。

        <filter>
            <filter-name>CompressingFilter</filter-name>
            <filter-class>com.github.ziplet.filter.compression.CompressingFilter</filter-class>
        </filter>
        <filter-mapping>
            <filter-name>CompressingFilter</filter-name>
            <url-pattern>/*</url-pattern>
        </filter-mapping>
    

    配置项

    示例。

        <filter>
            <filter-name>CompressingFilter</filter-name>
            <filter-class>com.github.ziplet.filter.compression.CompressingFilter</filter-class>
            <init-param>
                <param-name>debug</param-name>
                <param-value>true</param-value>
            </init-param>
        </filter>
    

    debug (optional): 是否输出 debug 信息,默认 false 。

    compressionThreshold (optional): 设置开启压缩的最小 response 大小,单位 byte 。设置为 0 时永远开启压缩。默认 1024 。

    statsEnabled (optional): 是否统计,详情见 CompressingFilterStats 。

    includeContentTypes (optional): 设置针对某种 content type 开启压缩,如 text/html 。在 response 设置了 content type 之后调用。

    excludeContentTypes (optional): include 和 exclude 是反义词,所以是设置排除某些 content type 的压缩。

    includePathPatterns (optional): 类似 includeContentTypes ,不过是针对的 uri 。支持正则表达式,如 '.static.' 。

    excludePathPatterns (optional): 排除特定 uri 的压缩。

    includeUserAgentPatterns (optional): 针对特定 UA 的压缩。

    excludeUserAgentPatterns (optional): 排除特定 UA 的压缩。

    noVaryHeaderPatterns (optional): 类似 includeUserAgentPatterns 。请求中符合配置的 UA 的响应不会包含 vary header 。

    => github.com/ziplet

    相关文章

      网友评论

        本文标题:Java web application 使用 ziplet 来

        本文链接:https://www.haomeiwen.com/subject/pcapgttx.html