We have multiple web applications deployed which have common Quartz database tables. All applications create their own Schedulers, Triggers and jobs. Since we have multiple apps, we get Class not found Exception in the JVM logs for the jobs which are not part of that JVM.
We are seeking help to resolve this.
We are currently using quartz v 1.8.6.
Please provide your valuable suggestions to fix this issue or let me know, if more details needed.
Quartz 1.8.x will not support multiple non-cluster schedulers in single DB schema. You have to create separate schema for each scheduler, or use Quartz-2.x
Also, if you are running clustered -scheduler in single DB schema in Quartz-1.8.x, ensure each web applications that runs the scheduler has the same Job impl classes loaded.