Reputation: 333
I want to implement some mechanism to scheduling jobs(tasks). But this will have task-pool and can save and reload tasks from database, dynamic tasks changing(from business logic), adding and removing. Furthermore this will work with Spring MVC. Can someone recommend anything like my needs ?
Upvotes: 0
Views: 60
Reputation: 2763
Quartz-scheduler is exactly what you're need. It fulfills all your requirements.
The reference for quartz-scheduler itself: http://quartz-scheduler.org/documentation
And the reference to Spring Framework documentation about integrating with quartz-scheduler: http://docs.spring.io/spring/docs/3.2.6.RELEASE/spring-framework-reference/html/scheduling.html#scheduling-quartz
Upvotes: 2