user82504
user82504

Reputation: 111

Dynamic cron job creation with springboot scheduler

I have a spring boot application. I want to run some ETL operations. I have a UI which defines and schedules a job. The job information is saved in db. I need to define a cron job for each of the jobs defined in db. I can have 100's of jobs that need to run. How can I programmatically add the cron jobs?

Upvotes: 0

Views: 929

Answers (1)

tienph
tienph

Reputation: 1289

You can use Quartz. You can search with this keyword

Quartz

Spring Quartz

More

Spring Boot Quartz

Upvotes: 1

Related Questions