After the user logs out, if the back button on the browser is clicked, the web application will not be able to properly protect the protected page - after the Session is destroyed (the user logs out), the protected JSP page is displayed again in the browser. However, if the user clicks any link on the return page, the web application will jump to the login page and prompt that the session has ended. Please log in. The root of the above problem is that most browsers have a back button. When you click the back button, by default the browser does not re-fetch the page from the web server, but instead loads the page from the browser cache. Java-based Web applications do not limit this function, and this problem also exists in Web applications based on PHP, ASP and .NET. Fortunately, the HTTP headers "Expires" and "Cache-Control" provide a mechanism for application servers to control caching on browsers and proxy servers. The HTTP header Expires tells the proxy server when its cached page will expire. The newly defined header information Cache-Control in the HTTP1.1 specification can notify the browser not to cache any pages. When you click the back button, the browser re-accesses the server to fetch the page. Here is the basic method of using Cache-Control: 1) no-cache: Force cache to get new pages from the server 2) no-store: Do not store any pages in the cache under any circumstances To be on the safe side, it is best to add some settings to both the html page and the jsp For HTML pages, add: Copy code The code is as follows:<meta HTTP-EQUIV="pragma" CONTENT="no-cache"> <meta HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-revalidate"> <meta HTTP-EQUIV="expires" CONTENT="0"> For JSP pages, add: Copy code The code is as follows:<% response.setHeader("Cache-Control","no-store"); response.setHeader("Pragrma","no-cache"); response.setDateHeader("Expires",0); %> That's it. |
<<: Detailed explanation of AWS free server application and network proxy setup tutorial
There is such a scenario: a circular container, t...
illustrate DML (Data Manipulation Language) refer...
environment Centos 6.6 MySQL 5.7 Install If the s...
The installation of MySQL 5.7 on Ubuntu 1804 is i...
Since I used this plugin when writing a demo and ...
This article describes how to enable https servic...
Table of contents Why is addEventListener needed?...
Frameset pages are somewhat different from ordina...
1. Use the SELECT clause to query multiple tables...
In this article, we’ll explore how async/await is...
Use Nginx to build Tomcat9 cluster and Redis to r...
Record the problems you solve for others. Problem...
Installation of Python 3 1. Install dependent env...
Let's take a look at the problem of VScode re...
Table of contents Preface: System Requirements: I...