Friends, I am using quartz scheduler for running a task every 5 minutes starting when application deployed & running continuously so i have written code as:

SchedulerFactory sf = new StdSchedulerFactory();
Scheduler sche = sf.getScheduler();

JobDetail job = newJob(RomeJob.class).withIdentity("Id1", "Rome").build();
CronTrigger trigger = newTrigger().withIdentity("Id1Trigger", "Rome").withSchedule(cronSchedule("0 0/5 * * * ?"))
.build();
sche.scheduleJob(job, trigger);
sche.start();

But its working sometime sometimes not. Please tell me whether i am missing something here?

link|improve this question

62% accept rate
feedback

3 Answers

up vote 2 down vote accepted

You have many ways one of them is use trigger builder something like

trigger = newTrigger()
    .withIdentity("mytrigger", "group1")
    .startNow()
    .withSchedule(simpleSchedule()
            .withIntervalInMinutes(5)
            .repeatForever())
    .build();
link|improve this answer
feedback

Do not use Cron schedule but simple schedule instead:

Trigger trigger = newTrigger().
  withIdentity("Id1Trigger", "Rome").
  withSchedule(
    simpleSchedule().
      withIntervalInMinutes(5).
      repeatForever()
  ).build();
link|improve this answer
+1 since the OP asked for "every 5 minutes starting when application deployed", not every 5 minutes on the wallclock. – Tichodroma Feb 1 at 12:54
feedback

Instead of

0 0/5 * * * ?

use

0 */5 * * * *

Edit: This results in your task being run at 0 seconds of every minute that is divisible by 5.

Edit 2: 0/5 means only the minutes 0 and 5.

link|improve this answer
thanks for quick responce , but i want to run my task every 5 minutes continuously will you helo to figure out cron string for this – JMoh Feb 1 at 12:54
What do you mean by "every 5 minutes continuously"? – Tichodroma Feb 1 at 12:55
once i deploy my website on tomcat task should run continuously with interval of 5 minutes it should not stop until tomcat stop but with interval of 5 minutes – JMoh Feb 1 at 12:56
Try one of the answers posted so far, they all work. – Tichodroma Feb 1 at 12:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.