我有一个返回这个 html 5 的 Jsp:
<html>
<head>
<title>Application</title>
<!-- Some script includes here -->
</head>
<body>
<!-- My html here -->
</body>
</html>
目前用户需要禁用缓存到浏览器中,否则每次都会重新加载旧页面。
我试图以这种方式强制使用 scriptlet 不缓存,但没有成功:
<%
response.addHeader("Cache-Control","no-cache");
response.addHeader("Expires","-1");
response.addHeader("Pragma","no-cache");
%>
事实上,scriptlet 不是一个好的解决方案,有没有什么方法可以在 JSP 中禁用缓存?