Spring 의 @ PostConstruct 태그 상세 설명

1390 단어 Spring
@ PostContract 는 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 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()         

}

좋은 웹페이지 즐겨찾기