当前位置: 代码迷 >> JavaScript >> jsp页面中开释缓存
  详细解决方案

jsp页面中开释缓存

热度:126   发布时间:2012-11-22 00:16:41.0
jsp页面中释放缓存

在你的jsp页面代码顶端加入这几行代码,就能起到自动释放缓存的作用:

<%
?? response.setHeader("Pragma", "no-cache");
?? response.setHeader("Cache-Control", "no-cache");
?? response.setDateHeader("Expires", 0);????
%>

  相关解决方案