web-dev-qa-db-ja.com

SpringでのQuartz JobとScheduling Tasksの違いは?

私はSpring-boot(バージョン1.3.6)とQuartzが初めてで、 Spring-scheduler でタスクを作成することの違いは何ですか?

    @Scheduled(fixedRate = 40000)
    public void reportCurrentTime() {
        System.out.println("Hello World");
    }

そして クォーツウェイ

0. Create sheduler.
1. Job which implements Job interface.
2. Create JobDetail which is instance of the job using the builder  org.quartz.JobBuilder.newJob(MyJob.class)
3. Create a Triger
4. Finally set the job and the trigger to the scheduler

コード内:

  public class HelloJob implements Job {

    public HelloJob() {
    }

    public void execute(JobExecutionContext context)
      throws JobExecutionException
    {
      System.err.println("Hello!");
    }
  }

そしてシェドラー:

SchedulerFactory schedFact = new org.quartz.impl.StdSchedulerFactory();

  Scheduler sched = schedFact.getScheduler();

  sched.start();

  // define the job and tie it to our HelloJob class
  JobDetail job = newJob(HelloJob.class)
      .withIdentity("myJob", "group1")
      .build();

  // Trigger the job to run now, and then every 40 seconds
  Trigger trigger = newTrigger()
      .withIdentity("myTrigger", "group1")
      .startNow()
      .withSchedule(simpleSchedule()
          .withIntervalInSeconds(40)
          .repeatForever())
      .build();

  // Tell quartz to schedule the job using our trigger
  sched.scheduleJob(job, trigger);

Quartzはジョブ、トリガー、スケジューラーを定義するためのより柔軟な方法を提供しますか、Spring Schedulerには他に優れたものがありますか?

18
Xelian

Spring Schedulerは、Java SE 1.4、Java SE 5 and Java EE環境。固有の実装があります。

Quartz Schedulerは、CRONベースまたはシンプルな定期タスク実行を可能にする本格的なスケジューリングフレームワークです。

Spring Schedulerは、Triggerの形式でQuartzスケジューラーとの統合を提供し、Quartzスケジューラーの全機能を使用します。

Quartz Scheduler固有のクラスを直接使用せずにSpring Schedulerを使用する利点は、抽象化レイヤーが柔軟性と疎結合を提供することです。

15
shazin