web-dev-qa-db-ja.com

Javaで定期的なタスクをスケジュールする方法

タスクを一定の間隔で実行するようにスケジュールする必要があります。どのようにすれば(たとえば8時間ごとに)長い間隔をサポートしながらこれを行うことができますか?

私は現在Java.util.Timer.scheduleAtFixedRateを使っています。 Java.util.Timer.scheduleAtFixedRateは長い時間間隔をサポートしますか?

158
RYN

ScheduledExecutorService を使用してください。

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

Quartz これはEEとSEのエディションで動作し、特定の時間に実行するジョブを定義することを可能にするJavaフレームワークです。

43
Jorge

この方法を試してください - >

最初にタスクを実行するクラス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));
}
21
Shessuky

下記のようにGoogle Guava AbstractScheduledServiceを使用してください。

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の詳細については、 こちら を参照してください。

11
Aride Chettali

Java.util.Timerを使い続けたい場合は、それを使って長い時間間隔でスケジュールを組むことができます。あなたは単にあなたが射撃している期間を過ぎます。ドキュメントをチェックしてください ここ

7
Belizzle

アプリケーションがすでにSpringフレームワークを使用している場合は、 Scheduling が組み込まれています。

3
Black

1秒ごとに何かする

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

あなたは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>
2
madhu_karnati

私はSpring Frameworkの機能を使います。 (spring-contextjarまたは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
Yan Khonski

これら2つのクラスは連携して定期的なタスクをスケジュールすることができます。

スケジュールされたタスク

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
SumiSujith