답변:
ScheduledExecutorService를 사용하십시오 .
private final ScheduledExecutorService scheduler = Executors.newScheduledThreadPool(1);
scheduler.scheduleAtFixedRate(yourRunnable, 8, 8, TimeUnit.HOURS);
이 방법으로 시도->
먼저 작업을 실행하는 TimeTask 클래스를 만듭니다.
public class CustomTask extends TimerTask {
public CustomTask(){
//Constructor
}
public void run() {
try {
// Your task process
} catch (Exception ex) {
System.out.println("error running thread " + ex.getMessage());
}
}
}
그런 다음 메인 클래스에서 작업을 인스턴스화하고 지정된 날짜까지 주기적으로 시작합니다.
public void runTask() {
Calendar calendar = Calendar.getInstance();
calendar.set(
Calendar.DAY_OF_WEEK,
Calendar.MONDAY
);
calendar.set(Calendar.HOUR_OF_DAY, 15);
calendar.set(Calendar.MINUTE, 40);
calendar.set(Calendar.SECOND, 0);
calendar.set(Calendar.MILLISECOND, 0);
Timer time = new Timer(); // Instantiate Timer Object
// Start running the task on Monday at 15:40:00, period is set to 8 hours
// if you want to run the task immediately, set the 2nd parameter to 0
time.schedule(new CustomTask(), calendar.getTime(), TimeUnit.HOURS.toMillis(8));
}
AbstractScheduledService
아래와 같이 Google Guava 를 사용하십시오 .
public class ScheduledExecutor extends AbstractScheduledService
{
@Override
protected void runOneIteration() throws Exception
{
System.out.println("Executing....");
}
@Override
protected Scheduler scheduler()
{
return Scheduler.newFixedRateSchedule(0, 3, TimeUnit.SECONDS);
}
@Override
protected void startUp()
{
System.out.println("StartUp Activity....");
}
@Override
protected void shutDown()
{
System.out.println("Shutdown Activity...");
}
public static void main(String[] args) throws InterruptedException
{
ScheduledExecutor se = new ScheduledExecutor();
se.startAsync();
Thread.sleep(15000);
se.stopAsync();
}
}
이와 같은 추가 서비스가있는 경우 모든 서비스를 함께 시작하고 중지 할 수 있으므로 ServiceManager에 모든 서비스를 등록하는 것이 좋습니다. 읽기 여기 에서는 ServiceManager에 대한 자세한 내용은.
이 두 클래스는 정기적 인 작업을 예약하기 위해 함께 작동 할 수 있습니다.
import java.util.TimerTask;
import java.util.Date;
// Create a class extending TimerTask
public class ScheduledTask extends TimerTask {
Date now;
public void run() {
// Write code here that you want to execute periodically.
now = new Date(); // initialize date
System.out.println("Time is :" + now); // Display current time
}
}
import java.util.Timer;
public class SchedulerMain {
public static void main(String args[]) throws InterruptedException {
Timer time = new Timer(); // Instantiate Timer Object
ScheduledTask st = new ScheduledTask(); // Instantiate SheduledTask class
time.schedule(st, 0, 1000); // Create task repeating every 1 sec
//for demo only.
for (int i = 0; i <= 5; i++) {
System.out.println("Execution in Main Thread...." + i);
Thread.sleep(2000);
if (i == 5) {
System.out.println("Application Terminates");
System.exit(0);
}
}
}
}
참조 https://www.mkyong.com/java/how-to-run-a-task-periodically-in-java/
1 초마다 무언가를하십시오
Timer timer = new Timer();
timer.schedule(new TimerTask() {
@Override
public void run() {
//code
}
}, 0, 1000);
Spring Framework의 기능을 사용합니다. ( 스프링 컨텍스트 항아리 또는 maven 종속성).
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@Component
public class ScheduledTaskRunner {
@Autowired
@Qualifier("TempFilesCleanerExecution")
private ScheduledTask tempDataCleanerExecution;
@Scheduled(fixedDelay = TempFilesCleanerExecution.INTERVAL_TO_RUN_TMP_CLEAN_MS /* 1000 */)
public void performCleanTempData() {
tempDataCleanerExecution.execute();
}
}
ScheduledTask 는 내 사용자 정의 메소드 execute 을 사용하는내 자신의 인터페이스이며예약 된 작업이라고합니다.
주석을 사용하여 Spring Scheduler를 사용해 보셨습니까 ?
@Scheduled(cron = "0 0 0/8 ? * * *")
public void scheduledMethodNoReturnValue(){
//body can be another method call which returns some value.
}
xml 로도이 작업을 수행 할 수 있습니다.
<task:scheduled-tasks>
<task:scheduled ref = "reference" method = "methodName" cron = "<cron expression here> -or- ${<cron expression from property files>}"
<task:scheduled-tasks>
내 서블릿에는 사용자가 수락을 누르면 스케줄러에 이것을 유지하는 방법이 코드로 포함되어 있습니다.
if(bt.equals("accept")) {
ScheduledExecutorService scheduler=Executors.newScheduledThreadPool(1);
String lat=request.getParameter("latlocation");
String lng=request.getParameter("lnglocation");
requestingclass.updatelocation(lat,lng);
}
TimeUnit
모두 적용initialDelay
하고period
. 종료됩니다 24 시간마다 실행하지만,에 DST 차기 때 오프 슬로우TimeUnit
의는DAYS
당신이 벌금 그레인 지정할 수 없습니다initialDelay
. (내부 ScheduledExecutorService 구현은DAYS
어쨌든 나노초 로 변환 된다고 생각합니다 ).