Dynamic task scheduling with spring batch + quartz

6

I have a project in Spring Batch + quartz, which loads a file and then processes the file data. Only I wanted to implement a view with a form where I had the option to choose the start time and end time and the days where I could run. Can I do this with Quartz + Spring batch?

Thanks for the attention

    
asked by anonymous 11.02.2016 / 00:13

1 answer

0

Yes, the Spring Scheduler commands can be set programmatically. More details here

Just persist your view data and create a new CronTrigger with the run data.

    
11.02.2016 / 01:21