i am using below cache control lines in jsp
response.setHeader("Pragma", "No-cache");
response.setHeader("Cache-Control", "no-cache, no-store, must-revalidate");
response.setDateHeader("Expires", 0);
but still my javascript files are getting cached to the disk. does this prevents caching of only JSP or also JS files? is there any other way to avoid caching of javascript files to disk? Please help me out of this Thanks you