JAVA技术交流QQ群:170933152
@PostContruct是spring框架的注解,在方法上加该注解会在项目启动的时候执行该方法,也可以理解为在spring容器初始化的时候执行该方法。
/**
* 功能说明:启动项目 将字典放入缓存中
*/
@PostConstruct
public 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()为获取当前系统时间
}
本文介绍了Spring框架中的@PostConstruct注解,它用于标记在项目启动或Spring容器初始化时执行的方法,帮助开发者进行项目配置和字典初始化。
711

被折叠的 条评论
为什么被折叠?



