spring boot实现静态资源文件自动添加版本号-MD5方式

论坛 期权论坛 脚本     
已经匿名di用户   2022-5-29 19:35   1901   0

在我们做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>
分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:81
帖子:4969
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP