I want to expose an user interface to define Quartz JOBs dynamically. Where user should have facility to define JOBs properties like JOB name, cron expression or time interv
I have similar issue where I want to update the cron expression in JOB_DETAILS table of quartz(2.3.2 version). The scenario is like, I have already a scheduled job running and I want to update it and run it on different frequency. Rest of the things I managed but the update on the table won't happen. So after reading the documentation I found out that you can update the details of the job using add method.
// store, and set overwrite flag to 'true'
scheduler.addJob(jobDetail, true);
The things I am doing with Java only.