Java Quartz scheduled Job – disallow concurrent execution of Job

Just use the @DisallowConcurrentExecution Annotation on top of the Job class.

See this official example or this tutorial about concurrent job execution.

Leave a Comment