mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2026-01-28 03:34:30 +09:00
- 시스템관리 > 관리자목록조회, 관리자등록, 관리자수정, 관리자삭제, 관리자상세조회
This commit is contained in:
@@ -1,21 +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");
|
||||
}
|
||||
}
|
||||
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");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user