hubez-admin partner-git master -> hubez-git transfer 202205241800

This commit is contained in:
hyunjin35
2022-05-24 18:12:19 +09:00
parent 013e992bc7
commit ad80b88089
309 changed files with 50355 additions and 91 deletions

View File

@@ -0,0 +1,21 @@
package kr.co.uplus.ez;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@Component
public class Scheduler {
private static final Logger log = LoggerFactory.getLogger(Scheduler.class);
/**
* 스케줄러 트리거는 해당영역에 선언 / 서비스영역은 별도
*/
@Scheduled(initialDelay = 60000, fixedRateString = "${schedule.sample.init:60000}")
public void init() {
// 스케줄 서비스 정의
log.info("schduler trigger");
}
}