jsp页面缓存清理

jsp页面开发过程中,页面修改了,但是显示的还是以前的页面,没有显示刚修改的内容,清理缓存方法,加上头信息:

<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="Content-Type" content="text/html; charset=GBK">

上一篇:jdk和tomcat基本配置


下一篇:笔试题&面试题:设计一个复杂度为n的算法找到单向链表倒数第m个元素