How to remove page caching using java
My web pages are开发者_Go百科 cached even when i used session.invalidate method. How can i remove caching of pages using java coding?
You need to set the appropriate headers in your pages so that they are not cached by the browser:
response.setHeader("Cache-Control","no-cache");
response.setHeader("Pragma","no-cache");
response.setDateHeader ("Expires", -1);
and
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
精彩评论