在 JSP 中添加 Expires 或 Cache-Control 标头
如何在 JSP 中添加 Expires
或 Cache-Control
标头?我想在包含页面中为我的静态组件(例如图像、CSS 和 JavaScript 文件)添加一个远期到期日期。
How do you add an Expires
or a Cache-Control
header in JSP? I want to add a far-future expiration date in an include page for my static components such as images, CSS and JavaScript files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
要禁用 JSP 页面的浏览器缓存,请创建一个映射到
*.jsp
的url-pattern
的Filter
,并在doFilter()
方法:这样您就不需要将其复制粘贴到所有 JSP 页面上并使用 scriptlet 来混乱它们。
要为 CSS 和 JS 等静态组件启用浏览器缓存,请将它们全部放在一个公共文件夹中,例如
/static
或/resources
并创建一个Filter
它映射到/static/*
或/resources/*
的url-pattern
上,并且在doFilter 中基本上执行以下操作()
方法:另请参阅:
To disable browser cache for JSP pages, create a
Filter
which is mapped on anurl-pattern
of*.jsp
and does basically the following in thedoFilter()
method:This way you don't need to copypaste this over all JSP pages and clutter them with scriptlets.
To enable browser cache for static components like CSS and JS, put them all in a common folder like
/static
or/resources
and create aFilter
which is mapped on anurl-pattern
of/static/*
or/resources/*
and does basically the following in thedoFilter()
method:See also:
像 Tomcat 这样的 Servlet 容器带有一组预定义的过滤器。例如,请参阅过期过滤器。使用现有的过滤器可能比创建自己的类似过滤器更容易。
Servlet containers like Tomcat come with a set of predefined filters. See for example Expires Filter. It may be easier to use existing one than to create your own similar filter.