码迷,mamicode.com
首页 > 其他好文 > 详细

Filter 使浏览器不缓存的过滤器

时间:2018-02-26 13:37:16      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:ade   set   eth   AC   http   pos   log   let   完全   

有3个Http响应字段都可以禁止浏览器缓存当前页面,他们在servlet中代码如下:

response.setDateHeader("Expires",-1);

response.setHeader("Cache-Control","no-cache");

response.setHeader("Pragma","no-cache");

并不是所有浏览器都完全支持以上三个方法,所以最后一起使用以上三个方法。

他们三个方法使用在过滤器的filterChain.doFilter之前

Filter 使浏览器不缓存的过滤器

标签:ade   set   eth   AC   http   pos   log   let   完全   

原文地址:https://www.cnblogs.com/hangji/p/8472474.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!