Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to prevent the result of Servlets from being cached?

How can I stop caching of pages in browser using Servlets?

I want that session should expire if I press back button of browser when i am logged in.

like image 575
Prashant Avatar asked Dec 16 '22 16:12

Prashant


2 Answers

To permanently disable cache.

  // Set to expire far in the past.
  response.setHeader("Expires", "Sat, 6 May 1995 12:00:00 GMT");

  // Set standard HTTP/1.1 no-cache headers.
  response.setHeader("Cache-Control", "no-store, no-cache, must-revalidate");

  // Set IE extended HTTP/1.1 no-cache headers (use addHeader).
  response.addHeader("Cache-Control", "post-check=0, pre-check=0");

  // Set standard HTTP/1.0 no-cache header.
  response.setHeader("Pragma", "no-cache");

Clearing the client cache would not expire session immediately,but clears session cookies in the browser. To make the session expire immediately, you need to explicitly specify in server side jsp or servlet.

// use session invalidate
session.invalidate();
like image 159
Dead Programmer Avatar answered Dec 31 '22 04:12

Dead Programmer


If you get a HttpServletResponse (implementation) object for the request you can send HTTP headers that will encourage browsers not to cache the content you send them.

HttpServletResponse response; // You'll need to initialize this properly

response.setHeader("Cache-control", "no-cache, no-store");
response.setHeader("Pragma", "no-cache");
response.setHeader("Expires", "-1");

See the documentation for HttpServletResponse and HttpServletResponseWrapper. In case you need to read up on cache control headers in HTTP, check this out.

like image 31
A. R. Younce Avatar answered Dec 31 '22 03:12

A. R. Younce