How to prevent the result of Servlets from being c

2020-02-12 09:35发布

问题:

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.

回答1:

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();


回答2:

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.