Which is the best way to run a process in scheduler. I can either do it crontab or Spring-Batch. Any other better option?
|
|
|
||
|
|
|
|
You can also look at Quartz if you want to schedule tasks in one VM. If you want to do something periodically as a separate process, I'd go for crontab. |
||
|
|
|
|
I thing that crontab is reasonable. It's mature program used for commercial purposes also. Other sheduler with GUI task creation is MAESTRO. You could also generate some config files for automation. |
||
|
|
|
|
Spring + Quartz is much easier to setup then Spring Batch. But it depends on you application. http://static.springsource.org/spring/docs/2.5.x/reference/scheduling.html Using Spring + Quartz you can define a MethodInvokingJobDetailFactoryBean that schedules a method call on a bean (that exists in your application context). In this example orderService.cancelNotPaidOrders() will be called every 30 minutes:
|
||
|
|
