I am trying to set up Quartz for a web application that manages jobs and triggers for quartz but uses Spring to initialize the SchedulerFactoryBean's data source. The web front-end needs to access the LocalDataSourceJobStore (which extends JobStoreCMT) to manage the jobs and triggers, but I'm not sure how to extract it from the SchedulerFactoryBean. How should I set up the beans in Spring's XML file to initialize the SchedulerFactoryBean and still use the LocalDataSourceJobStore? If there is a better solution, please let me know.


Reply With Quote