vote up 0 vote down star

I have a the following;

private String cronExpression = "";
private final String jobID = "MyJObID";
...
Scheduler scheduler = ServiceLocator.getInstance().getScheduler();
CronTrigger trigger = new CronTrigger(jobID , Scheduler.DEFAULT_GROUP, cronExpression);
JobDetail jobDetail = new JobDetail(jobID , Scheduler.DEFAULT_GROUP, MyJob.class);
scheduler.scheduleJob(jobDetail, trigger);

My question is when is this job triggered for the empty cron expression?

flag

Is this just out of curiosity, or is your application actually doing this? If the latter, what for? – skaffman Jul 16 at 8:42
my application is actually doing this. I have modified some parts of the code and would like to do some tests. – n002213f Jul 16 at 9:39

2 Answers

vote up 1 vote down

Are you sure it works?

Just by looking at the org.quartz.CronExpression#buildExpression() method code it looks like an exception should be thrown:

        if (exprOn <= DAY_OF_WEEK) {
            throw new ParseException("Unexpected end of expression.",
                        expression.length());
        }

      // exprOn should be equal to SECOND in case of empty String given

[checked in Quartz 1.6.0]

link|flag
yes it does, using Quartz 1.5.1 – n002213f Jul 16 at 8:33
FWIW its sent every morning at 8am – n002213f Jul 16 at 8:42
Looking at the source of Quartz 1.5.1 (this time it's CronTrigger.buildExpression()) the same exception is thrown there. Have you tried to debug and set a breakpoint somewhere there? – GrzegorzOledzki Jul 16 at 8:46
vote up 0 vote down check

Thanks for the help guys, found the issue.

After some night of searching i found out that the class was registered in JBoss as a MBean and a value for the cron expression attribute was set to some meaningful value.

Sigh

link|flag

Your Answer

Get an OpenID
or

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