java web项目发版js或css缓存问题解决方案

java web项目发版js或css缓存问题解决方案

给引入的js或css文件加版本号

<%
 String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/";

    // 加载资源文件
    PropertiesResourceFileUtils prfu = new PropertiesResourceFileUtils("version.properties");

%>

<script type="text/javascript" src="<%=basePath%>script/common/common.js?version=<%=prfu.getValue("version") %>"></script>

<link rel="stylesheet" type="text/css" href="<%=basePath%>css/epoch.css?version=<%=prfu.getValue("version") %>">


version.properties文件:

#版本号
version=20161125.02


public class PropertiesResourceFileUtils {
 /**
  * Properties对象
  */
 private Properties properties = new Properties();
 
 /**
  * PropertiesResourceFileUtils构造函数
  * @param propertiesPath 文件路径
  */
 public PropertiesResourceFileUtils(String propertiesPath) {
        try {
            InputStream in = PropertiesResourceFileUtils.class.getClassLoader().getResourceAsStream(propertiesPath);
            if(in != null) {
                properties.load(in);
            }
        }
        catch (IOException e) {
            e.printStackTrace();
        } 
 }

    /**
     * 通过KEY获取值
     * @param key
     * @return 
     */
    public String getValue(String key){
        String value = properties.getProperty(key);
        if(StringUtils.isNotBlank(value))
            try {
                value = new String(value.getBytes("ISO-8859-1"), "UTF-8");
            } catch (UnsupportedEncodingException e) {
                e.printStackTrace();
            }
        return value;
    }
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值