Quartz Scheduler using database -


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

Popular posts from this blog

qt - switch/case statement in C++ with a QString type -

python - sqlite3.OperationalError: near "REFERENCES": syntax error - foreign key creating -

Python's equivalent for Ruby's define_method? -