I have an application that needs to do some actions every date change say at midnight. Whenever the date changes the application should be said of the same. Any help regarding how to implement the functionality would be appreciated.
|
What you're looking for is a scheduler. Quartz is probably the most commonly used scheduler in the Java world, though Spring has some interesting scheduling features if you are already using that framework. Whichever scheduler you choose, you generally specify an action to occur (sometimes referred to as a "job") and a time for it to happen (a "trigger" in the Quartz terminology). In your case you'd set the trigger to run every day at midnight, and when it fired it would do whatever it was you needed done, as specified by your job. |
|||
|
|
|
As a library, you can use Alternatively, you can implement what Quartz does yourself, by using a separate thread and sleeping until the next midnight. |
|||
|
|
|
The answer to this question used to be Quartz. It is the defacto standard for scheduling in Java. It is pretty easy to use but it is a bit heavyweight. If you don't care about clustered scheduling or JDBC storage of the jobs, quartz might be overkill. Thankfully Spring 3.0 comes with new scheduling features. These allow the simple 'do this evey 30 seconds' or 'do this everyday at midnight' types of scheduling without using quartz. If you are already using spring it is pretty easy to set up. Example:
This will cause the method 'anotherMethod' to be called on you bean named 'anotherObject' at midnight everyday. More information can be found on spring's site: http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/scheduling.html |
|||||||
|
|
You don't need a big bloaty framework. Something like this should work.
|
|||
|
|
|
If you want a more lightweight solution than a whole library, I found a pretty simple implementation here. It's basically a
|
|||
|
|
|
If you don't want Quartz or any other Framework like that, you can simply use the scheduleAtFixedRate Method of the ScheduledExecutorService instead (there's an example of how to instantiate one at the JavaDoc). The only thing you have to think about is how to calculate the beginning of the first day. Edit As Jarnbjo mentioned: This won't survive Daylight Saving Time switches and leap-seconds. So be aware of this, when using the Executor. |
|||||||
|