设置 HTTP 缓存过期,Google PageSpeed 和 Yahoo for weblogic 推荐

发布于 2024-12-15 20:44:10 字数 447 浏览 2 评论 0原文

我想为weblogic设置这个过期时间,描述如下:

http://developer.yahoo .com/performance/rules.html#expires

http://code.google.com/speed/page-speed/docs/caching.html

我看到很多示例如何在 Apache 中使用 .htaccess 文件执行此操作,但我不知道没有看到 weblogic 的示例。

有人可以提供一个如何提前设置静态内容过期的示例吗?

I want to set this expiration for weblogic, here is the description:

http://developer.yahoo.com/performance/rules.html#expires

http://code.google.com/speed/page-speed/docs/caching.html

I see a lot of examples how to do it in Apache using .htaccess file but I don't see examples for weblogic.

Can someone please provide an example how to set expiration of static content far in advance?

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

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

发布评论

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

评论(1

放低过去 2024-12-22 20:44:10

Weblogic 没有配置文件来执行此操作。
您必须在 JSP 代码中执行此操作(所有代码都使用 Pragma HTTP headers)或对所有静态文件(例如 CSS 和图像)使用过滤器。

BalusC对此问题的回答中有一个很好的例子

Add an Expires or a Cache-Control header in JSP

具体来说

httpResponse.setDateHeader("Expires", System.currentTimeMillis() + 604800000L); // 1 week in future.

Weblogic does not have a config file to do this.
You'll have to do this in your JSP code (all of them using Pragma HTTP Headers) or using a Filter for all static files such as CSS and images.

There is a good example in BalusC's answer to this question

Add an Expires or a Cache-Control header in JSP

Specifically

httpResponse.setDateHeader("Expires", System.currentTimeMillis() + 604800000L); // 1 week in future.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文