标签:
一、属性文件:version.properties -》内容:version=201608
二、java代码
public class configVersion implements ServletContextAware { private ServletContext servletContext; @Override public void setServletContext(ServletContext servletContext) { this.servletContext = servletContext; } @Value("${version}") //取属性文件值SpringMVC功能 private String version; public void init() {
// String version = new Date() + Math.random(); //第二种方法:可以直接给一个(日期+随机数) servletContext.setAttribute("version", version); } }
三、 applicationContext.xml配置
<bean class="com.zhihui.base.configVersion " init-method="init"></bean>
四、html引用外部资源
<script src="/js/shopping.js?v=${version}"></script>
servletContext.setAttribute("version", version);
标签:
原文地址:http://www.cnblogs.com/chenweichu/p/5784944.html