tags:

views:

43

answers:

1

I need to know where i can start a cron in my java web app. I need this cron to run daily and be rescheduled if the server restarts. Do java web application have hook where i can do this?

----edits----

Im using quartz to schedule a task which will pull down and parse a csv file and store it in a database. I need to know where i should schedule it to run the first time

+4  A: 

You might want to use a ServletContextListener. It supports two methods that run when an web app is started and ended. This article goes over setting one up. You can start the Quartz scheduler in the Initialize method and shut it down in the Destroy method.

Philip T.
thanks this is just what i was looking for
Dave.B