Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在我的 jsp 页面上缓存图像。
我知道我可以像这样缓存所有内容:
httpResponse.setDateHeader("Expires", System.currentTimeMillis() + 604800000L);
但我只需要为图像设置过期缓存。我怎样才能做到这一点?最简单的方法是什么?
谢谢
创建一个servlet filter将侦听以 *.jpg、*.gif、*.png 等结尾的 URL,并在响应中添加 expires 标头。
servlet filter