I am using spring version 4.0.6 and quartz with it, version 1.8.6. The problem is, when I try to use a configuration class instead of xml (with @Configuration annotation), I am not able to set the cron expression with the method
CronTriggerBean ctBean = new CronTriggerBean(); ctBean.setCronExpression("0 35 15 ? * MON *");
Please tell me if there is a version compatibility issue.
The exact error is this:
The method setCronExpression(String) is undefined for the type CronTriggerBean
Consider using
CronTriggerFactoryBean
:and then:
The documentation here says: "NOTE: This FactoryBean works against both Quartz 1.x and Quartz 2.0/2.1, in contrast to the older CronTriggerBean class.".