In my web application there is some problem due to browser cache.
How to clear the browser cache when loading my jsp page?
How can i include clear cache code
You can do this way in your JSP to prevent from caching,not able to clear the cache programatically:
prevent from caching
<% response.setHeader("Cache-Control","no-cache"); //HTTP 1.1 response.setHeader("Pragma","no-cache"); //HTTP 1.0 response.setDateHeader ("Expires", 0); //prevents caching at the proxy server %>