spring integration + cron + quartz in cluster?
I have a spring integration flow triggered by the cron expression like follows: <int-ftp:inbound-channel-adapter id="my-input-endpoint" ...> <int:poller trigger="my-trigger"/> </int-ftp:inbound-channel-adapter> <bean id="my-trigger" class="org.springframework.scheduling.support.CronTrigger"> <constructor-arg value="0 * * * * *" /> </bean> It works fine. But now I have to extend the implementation to make it cluster ready (job execution on only one cluster node at the same point of time). My wish would be to use the Quartz framework in the cluster mode (persisting the job status in the database