-jsp 에서
<%
response.setHeader("Cache-Control","no-cache");
response.setHeader("Pragma","no-cache");
response.setDateHeader("Expires",0);
%>
-html에서
<meta http-equiv="Cache-Control" content="no-cache"/>
<meta http-equiv="Expires" content="0"/>
<meta http-equiv="Pragma" content="no-cache"/>
-그리고
브라우저의 도구>옵션>임시 인터넷 파일> 에서 "페이지를 열때마다"로 고쳐준다.