반응형
자바스크립트에서는 setTimeOut 메소드를 이용하여 일정 시간 뒤 로직을 실행시킬 수 있지만,
백단 자바에서는 timeTask를 써야한다.
예제는 아래와 같다.
ExampleTimer.java 파일을 만든 뒤 아래의 코드를 작성.
package com.timer.ex;
import java.util.Timer;
import java.util.TimerTask;
public class ExampleTimer {
private Timer timer;
//task 클래스 생성
public class TaskToDo extends TimerTask {
int count=0;
@Override
public void run() {
System.out.println(count + "th " + "Task Done!");
count += 1;
}
}
/////////////////////
//setTimer 메소드 선언
public void setTimer(long delay, long period) {
timer = new Timer();
timer.schedule(new TaskToDo(), delay, period);
}
//////////////
public static void main(String args[]) {
ExampleTimer exampleTimer = new ExampleTimer();
exampleTimer.setTimer(2000, 1000); //처음에 2초 뒤에 시작. 1초간격으로 실행
}
}
setTimer가 (2000, 1000) 이므로 처음에 2초 있다가 시작하며 console에 초당 카운트가 되는것을 볼수 있다.
0th Task Done!
1th Task Done!
2th Task Done!
3th Task Done!
4th Task Done!
5th Task Done!
반응형
'스프링 프레임워크 > 스프링 기초' 카테고리의 다른 글
13. java로 httpconnection 통신하기 (0) | 2021.05.31 |
---|---|
12. 자바 설치 방법 (0) | 2020.11.28 |
10. db 시간 timestamp error (0) | 2020.03.26 |
09. 스프링에서 myBatis사용하여 mySQL db연동 (0) | 2019.06.24 |
08. JsonArray, JsonObject 만들고 불러오기 (AJAX column 사용) (0) | 2019.06.19 |