This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
I need once at week automatically send mail in my webapp... How can I do it? I think I must deploy with my app some.. Some liberally or something like this.
Actually problem is - how to identify event - ONCE AT WEEK?
The java.util.Timer and TimerTask classes can schedule events that occur in regular intervals (e.g., every 24 hours), or at specific points in time (e.g, every Friday night at midnight). See here for examples e367 and e368.
Thanks Ulf! But how can I run something like this example on server? When start app server must run something like servlet... or something else ,who looking for time
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35253
7
posted
0
Assuming you have a web app, you can run code at web app startup time by configuring a ServletContextListener and its contextInitialized method.