Disable cache: how to disable the browser from caching page content

Source: Internet
Author: User

To avoid frequent interaction with the server, the browser provides the cache function. When you frequently access the synonymous JSP page, the browser will retrieve the results in the cache as a user response and does not send requests to the server. Therefore, it is often unable to reflect the latest processing results of the server.

 

 

If a JSP or servlet program does not require the client browser to cache its corresponding content, you can add the following code:

Response. setheader ("Pragma", "No-Cache"); response. setheader ("cache-control", "No-Cache"); response. setdateheader ("expires",-10 );

 

 

Conclusion: disabling the browser to cache JSP or servlet Response Results ensures that requests are sent to the server every time you frequently access the unified web page, so that the server's recent results can be displayed to the user. When using the above Code in servlet, it must be used before the response. getwriter () method, otherwise it will be invalid.

 

Disable cache: how to disable the browser from caching page content

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.