-
Spring MVC 3.0实战指南中提到,可以放心使用浏览器缓存,即使不同步也不必担心
资源介绍
允许利用浏览器的缓存且不当心不同步
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
静态资源测试
...
public class ResourcePathExposer implements ServletContextAware {
public void init() {
String version = "1.2.1";
resourceRoot = "/resources-" + version;
getServletContext().setAttribute("resourceRoot",
getServletContext().getContextPath()+resourceRoot);
}
}
*