Is there a way to have @Scheduled with quartz as the underlying scheduler?
Two things that I can think of, but both require some work:
- create a custom
BeanPostProcessorthat will parse the@Scheduledannotation and register quartz jobs - implement
TaskSchedulerto delegate to the quartzScheduler.
The question is: is there something already written for the above two options and is there another option?