Spring学习 之 注解笔记

目录

一. 注解学习

01. @PostConstruct注解学习


一. 注解学习

01. @PostConstruct注解学习

@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()为获取当前系统时间

}

 

猜你喜欢

转载自blog.csdn.net/hkk666123/article/details/81126648