摘要:
一、属性文件:version.properties -》内容:version=201608 二、java代码 三、 applicationContext.xml配置 <bean class="com.zhihui.base.configVersion " init-method="init"></b 阅读全文
摘要:
@Controller @RequestMapping("/reg") public class RegController extends BaseController { @Value("${jdbc.url}") private String signDetail; //取jdbc.url属性值 阅读全文
摘要:
Spring MVC 通过@Value注解读取.properties配置内容,@value.properties 第一步: 在applicationContext.xml配置: 第二步: 建立配置文件内容: 例如:userPageSize=5 第三步: 在Controller中使用注解获得配置项内容 阅读全文
摘要:
springMVC 静态资源加版本号 一般情况下,浏览器都会缓存一些静态资源,避免请求服务器再次获取 当静态资源内容有更新的时候,我们一般的办法是在引用静态资源的src后直接加版本号,例如http://m.17173.com/resource/script/m/nav.js?v=4 这样做的一个坏处 阅读全文
摘要:
javax.servlet.ServletContextListener 监听器 有两个方法 public void contextDestroyed(ServletContextEvent arg0) { System.out.println("结束服务");//当关闭服务时执行此监听} publ 阅读全文