首页 > 学院 > 开发设计 > 正文

Spring的@PostConstruct标签详解

2019-11-08 03:27:14
字体:
来源:转载
供稿:网友

@PostContruct是sPRing框架的注解,在方法上加该注解会在项目启动的时候执行该方法,也可以理解为在spring容器初始化的时候执行该方法。

/** * 功能说明:启动项目 将字典放入缓存中 */@PostConstructpublic void SynDictionary() { //设置日期格式 SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss:SSS"); // new Date()为获取当前系统时间 System.out.println("字典缓存开始:"+df.format(new Date())); List<Dic> dicList = dicmanagedao.getDicInfo(); for (Dic dic:dicList) { EHCacheMonitFile.saveCatch("maxvalue_dic_" + dic.getDictype().getCode() + "_" + dic.getCode(), dic.getName()); } System.out.println("字典缓存结束:"+df.format(new Date()));// new Date()为获取当前系统时间}


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表