服务器版本更新与客户端不同步的问题

http状态304表示请求的是缓存,200表示是从服务器请求的。


3张不同的照片,第一次访问,总共请求了4次,


<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding= "UTF-8"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv= "Content-Type" content= "text/html; charset=UTF-8">

<title>Insert title here</title>

</head>

<body>

     <img alt="" width= "200px"  src= "static/image1.jpg">

<img alt="" width= "200px" src= "static/image2.jpg">

<img alt="" width= "200px" src= "static/image3.jpg">

</body>

</html>




然后我们刷新一下,发现200的变成了304,因为图片已经缓存在了本地。




以下是3张相同的image1照片,明显都是存在了本地缓存中





加上时间戳目的是为了解决项目更新代码不同步的问题。同理CSS,JS也应该加入时间戳,下次再修改代码的时候避免因为缓存原因没有同步。

<img alt=

""

width=

"200px"

   src=

"static/image1.jpg?

<%=System.currentTimeMillis()%>

"

>


关注我的公众号,都是满满的干货!

孙坚.gif

上一篇:WCF NetTcpBinding Transport安全模式(6) ClientCredentialType证书验证模式---- PeerTrust验证模式


下一篇:security use blockdev in virtual env