在我们做Web开发时,免不了与静态资源(css,js,images)打交道,通常的做法是在请求的URL上添加版本信息,这样可以很好的利用客户端缓存机制,只有当资源内容改变时,才需要从服务器重新请求,并加载最新版本资源,本文章介绍MD5方式。
使用这种方式,当我们文件修改后,手工修改版本号来达到URL文件不被浏览器缓存的目的。
第一步:修改 application.properties 配置文件
spring.resources.chain.strategy.content.enabled=true
spring.resources.chain.strategy.content.paths=/**
第二步:创建 ResourceUrlProviderController 文件
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.servlet.resource.ResourceUrlProvider;
/**
* 静态资源js配置
*
* @author Administrator
*
*/
@ControllerAdvice
public class ResourceUrlProviderController {
@Autowired
ResourceUrlProvider resourceUrlProvider;
@ModelAttribute("urls")
public ResourceUrlProvider urls() {
return this.resourceUrlProvider;
}
}
第三步:在页面中进行使用:
<script src="${request.contextPath}${urls.getForLookupPath('/static/pl/createCustomTask/list.js')}"></script>
如果使用的thymeleaf模板引擎的话,那么需要这么进行编写:
<scripttype="text/javascript"th:src="${urls.getForLookupPath('/js/list.js') }"></script>
|