想要在Weblogic中启用GZip压缩

发布于 2024-12-25 04:45:38 字数 98 浏览 1 评论 0原文

我想为我的静态文件启用 GZIP 压缩,例如由 weblogic 服务器提供服务的 css 样式、javascript。任何人都可以帮助如何在 weblogic 服务器中配置此功能。

I want to enable GZIP compression for my static file like css styles, javascript which is serving from weblogic server. Can anyone help to how to configure this feature in weblogic server.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

明媚殇 2025-01-01 04:45:38

转到 http://sourceforge.net/projects/pjl-comp-filter/下载它并使用以下配置更新您的 web.xml 文件:

<filter>
    <filter-name>CompressingFilter</filter-name>
    <filter-class>com.planetj.servlet.filter.compression.CompressingFilter</filter-class>
    <init-param><param-name>includeContentTypes</param-name><param-value>text/html,text/css,application/x-javascript</param-value></init-param>
    <init-param><param-name>compressionThreshold</param-name><param-value>256</param-value></init-param>
</filter>

<filter-mapping>
    <filter-name>CompressingFilter</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

Go to http://sourceforge.net/projects/pjl-comp-filter/ to download it and update your web.xml file with the following config:

<filter>
    <filter-name>CompressingFilter</filter-name>
    <filter-class>com.planetj.servlet.filter.compression.CompressingFilter</filter-class>
    <init-param><param-name>includeContentTypes</param-name><param-value>text/html,text/css,application/x-javascript</param-value></init-param>
    <init-param><param-name>compressionThreshold</param-name><param-value>256</param-value></init-param>
</filter>

<filter-mapping>
    <filter-name>CompressingFilter</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>
无需解释 2025-01-01 04:45:38

为 Web 应用程序配置 GZIP 压缩

您可以在域级别或 Web 应用程序级别启用和配置内容编码 GZIP 压缩。特定 Web 应用程序的值会覆盖域级别的值。
要为域中的所有 Web 应用程序配置 GZIP 压缩:

  1. 如果您尚未执行此操作,请在
    管理控制台,单击锁定和锁定编辑请参阅使用更改
    中心
    )。
  2. 在域结构树中,选择您的域。
  3. 选择配置> Web 应用程序
  4. 定义以下域范围的 Web 应用程序配置设置
    GZIP 压缩:

    • 启用 GZIP 压缩:为所有 Web 应用程序启用或禁用 GZIP 压缩。默认情况下,该值未启用。
    • GZIP 压缩最小值。内容长度:配置触发GZIP压缩的最小内容长度。默认值为 2048。
    • GZIP 压缩内容类型:配置要包含在压缩中的内容类型。默认值为text/html、text/xml、text/plain。单击“保存”以保存任何更改。
  5. 要激活这些更改,请在管理控制台的更改中心中单击激活更改
    并非所有更改都会立即生效 - 有些更改需要重新启动(请参阅使用更改中心)。

Configure GZIP compression for Web applications

You can enable and configure content-encoding GZIP compression at the domain level or Web application level. Values for a specific Web application override domain-level values.
To configure GZIP compression for all Web applications in the domain:

  1. If you have not already done so, in the Change Center of the
    Administration Console, click Lock & Edit (see Use the Change
    Center
    ).
  2. In the Domain Structure tree, select your domain.
  3. Select Configuration > Web Applications.
  4. Define the following domain-wide Web application configuration settings for
    GZIP compression:

    • GZIP Compression Enabled: enable or disable GZIP compression for all Web applications. By default, this value is not enabled.
    • GZIP Compression Min. Content Length: configure the minimum content length to trigger GZIP compression. The default value is 2048.
    • GZIP Compression Content Type: configure the type of content to be included in compression. The default value is text/html, text/xml, text/plain. Click Save to save any changes.
  5. To activate these changes, in the Change Center of the Administration Console, click Activate Changes.
    Not all changes take effect immediately—some require a restart (see Use the Change Center).
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文