Java에서 주기적 작업을 예약하는 방법은 무엇입니까?


183

정해진 시간 간격으로 작업을 실행하도록 예약해야합니다. 긴 간격 (예 : 8 시간마다)을 지원하여이 작업을 수행하려면 어떻게해야합니까?

현재을 사용하고 java.util.Timer.scheduleAtFixedRate있습니다. java.util.Timer.scheduleAtFixedRate오랜 시간 간격을 지원 합니까 ?

답변:


260

ScheduledExecutorService를 사용하십시오 .

 private final ScheduledExecutorService scheduler = Executors.newScheduledThreadPool(1);
 scheduler.scheduleAtFixedRate(yourRunnable, 8, 8, TimeUnit.HOURS);

1
당신은이 때문에이 그것을 할 수있는 좋은 방법이 아니다 특정 시간에 매일 실행하려면 TimeUnit모두 적용 initialDelay하고 period. 종료됩니다 24 시간마다 실행하지만,에 DST 차기 때 오프 슬로우 TimeUnit의는 DAYS당신이 벌금 그레인 지정할 수 없습니다 initialDelay. (내부 ScheduledExecutorService 구현은 DAYS어쨌든 나노초 로 변환 된다고 생각합니다 ).
Sam Barnum

46

당신은에보고해야 석영 은 EE 및 SE 버전에서 작동하고 특정 시간을 실행하는 작업을 정의 할 수 있습니다 느릅 나무 자바 프레임 워크의


23

이 방법으로 시도->

먼저 작업을 실행하는 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));
}

6
당신이 TimeUnit.HOURS.toMillis (8)에 전화 예약 당신이 최종 인수를 변경할 수있는 코드를 더 읽기 쉽게하기
darrenmc

Timer 설명서는 대신 Executor 프레임 워크를 사용할 것을 권장합니다.
Karan Khanna

14

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에 대한 자세한 내용은.


9

을 사용하려는 경우 java.util.Timer이를 사용하여 많은 시간 간격으로 예약 할 수 있습니다. 촬영하는 기간 만 지나면됩니다. 여기 에서 설명서를 확인 하십시오 .


5

이 두 클래스는 정기적 인 작업을 예약하기 위해 함께 작동 할 수 있습니다.

예약 된 작업

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/


지금까지 가장 깨끗하고 구현하기 쉬운 최상의 솔루션
Salvador Vigo


4

1 초마다 무언가를하십시오

Timer timer = new Timer();
timer.schedule(new TimerTask() {
    @Override
    public void run() {
        //code
    }
}, 0, 1000);

1
Timer 문서는 대신 Executor 프레임 워크를 사용할 것을 권장합니다
Karan Khanna

3

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 을 사용하는내 자신의 인터페이스이며예약 된 작업이라고합니다.


2

주석을 사용하여 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>

0

내 서블릿에는 사용자가 수락을 누르면 스케줄러에 이것을 유지하는 방법이 코드로 포함되어 있습니다.

if(bt.equals("accept")) {
    ScheduledExecutorService scheduler=Executors.newScheduledThreadPool(1);
    String lat=request.getParameter("latlocation");
    String lng=request.getParameter("lnglocation");
    requestingclass.updatelocation(lat,lng);
}
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.