设置 HTTP 缓存过期,Google PageSpeed 和 Yahoo for weblogic 推荐
我想为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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Weblogic 没有配置文件来执行此操作。
您必须在 JSP 代码中执行此操作(所有代码都使用 Pragma HTTP headers)或对所有静态文件(例如 CSS 和图像)使用过滤器。
BalusC对此问题的回答中有一个很好的例子
Add an Expires or a Cache-Control header in JSP
具体来说
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