I am using quartz to schedule cron jobs in my web application. I am using an Oracle database to store jobs and related information. When I add jobs to databases, I have to start server / app (tomac server) to be scheduled for these new jobs. How can I add jobs to the database and work them without restarting the server.
I believe that you are using JDBCJobStore ? In that case, this database is not ideal for making direct changes to the table tables that store data collections. However, I think that you can set up a different job that runs for every x minute / hour, checks whether there are new jobs in the database (which are required to be set), and schedule them as usual.
Comments
Post a Comment