Re: Struts 2 scheduler

2008-03-17 Thread GF
Yes, I usually use Quartz inside Spring. If I remember correctly there is a chapter about Scheduling in the big Spring manual On Fri, Mar 14, 2008 at 3:47 AM, alex xander [EMAIL PROTECTED] wrote: thx all, i solve my problem with quartz, i used it with spring thx so much

Re: Struts 2 scheduler

2008-03-13 Thread alex xander
thx all, i solve my problem with quartz, i used it with spring thx so much - Original Message From: Peters, John [EMAIL PROTECTED] To: Struts Users Mailing List user@struts.apache.org Sent: Wednesday, March 12, 2008 10:14:18 PM Subject: RE: Struts 2 scheduler Depends

RE: Struts 2 scheduler

2008-03-12 Thread Peters, John
://www.javabeat.net/javabeat/ejb3/articles/timer_services_api_in_ejb _3_0_2.php Quartz isn't really worth the effort for small mundane tasks. -Original Message- From: alex xander [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2008 10:45 PM To: Struts Users Mailing List Subject: Struts 2 scheduler i

RE: Struts 2 scheduler

2008-03-12 Thread Chamara Gunaratne
To: Struts Users Mailing List Subject: RE: Struts 2 scheduler --- Peters, John [EMAIL PROTECTED] wrote: What kind of task, database cleanup? Does it occur every minute, hour, day? You might want to consider a stateless session EJB that implements a TimerService. Here are some examples http

Re: Struts 2 scheduler

2008-03-12 Thread Musachy Barroso
But EJB is?! I had the same reaction :). Go Quartz and don't look back. musachy - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Struts 2 scheduler

2008-03-12 Thread Dave Newton
--- Peters, John [EMAIL PROTECTED] wrote: What kind of task, database cleanup? Does it occur every minute, hour, day? You might want to consider a stateless session EJB that implements a TimerService. Here are some examples

RE: Struts 2 scheduler

2008-03-12 Thread Peters, John
] Sent: Wednesday, March 12, 2008 9:42 AM To: Struts Users Mailing List Subject: RE: Struts 2 scheduler --- Peters, John [EMAIL PROTECTED] wrote: What kind of task, database cleanup? Does it occur every minute, hour, day? You might want to consider a stateless session EJB that implements

Struts 2 scheduler

2008-03-11 Thread alex xander
i used struts 2.0.6 i need to schedule a task i've read the documentation, and it use quartz to schedule but it don't tell how to implement quartz in struts 2. can someone help me, or there's another way to schedule a task in struts 2 thx