I've got to write an app that performs a series of tasks:
- task to be run once at 0200 hours every day.
- task to be run once at 0400 hours ever day
- task to be run at 15 minute intervals starting at 0003 hours
- task to be run at 15 minute intervals starting at 0005 hours
What are the pros and cons of using plain java.util.timer Vs. Quartz for this?
Are there any other alternatives I should be considering?