Re: Very interesting question... my boss complain about one of my implementations...

2010-05-29 Thread Jeremy Thomerson
On Sat, May 29, 2010 at 11:27 AM, Victor_Trapiello wrote: > > Hi guys, thank you very much for your comments, > > let me explain a little bit deeper my solution, I have a method that create > and execute a thread when I iniciate the aplication, inside if the init > wicket metod, inside of the thre

Re: Very interesting question... my boss complain about one of my implementations...

2010-05-29 Thread Cristi Manole
read it here http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/scheduling.html (with spring, and you can integrate it with quartz also). On Sat, May 29, 2010 at 12:36 PM, Victor_Trapiello wrote: > > Sorry guys I have missed some of your commets I was having a look

Re: Very interesting question... my boss complain about one of my implementations...

2010-05-29 Thread Victor_Trapiello
Sorry guys I have missed some of your commets I was having a look to "Scheduling jobs using Quartz or Timer" and it seems to be a good solution and easy to implement/integrate with spring, at lists I will have some arguments to discuss with him on monday!! Cheerss! -- View this message in contex

Re: Very interesting question... my boss complain about one of my implementations...

2010-05-29 Thread Victor_Trapiello
Hi guys, thank you very much for your comments, let me explain a little bit deeper my solution, I have a method that create and execute a thread when I iniciate the aplication, inside if the init wicket metod, inside of the thread I call another method that updates a state in the database, I mea

Re: Very interesting question... my boss complain about one of my implementations...

2010-05-28 Thread nino martinez wael
Hmm Eelco, im puzling with a guice quartz integration as well. it's here and not at all complete (along with an ehcache integration) : http://code.google.com/p/slurry/ 2010/5/28 Eelco Hillenius : I had a terrible day because one of my bosses complain about how I have done one task o

RE: Very interesting question... my boss complain about one of my implementations...

2010-05-27 Thread Stefan Lindner
And the simplest solution, if it is a simple database action, would be to use a cron job if your database runsund some **ux operating system. Stefan - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional com

Re: Very interesting question... my boss complain about one of my implementations...

2010-05-27 Thread Eelco Hillenius
>>> I had a terrible day because one of my bosses complain about how I have >>> done >>> one task of a project, we had to implement "something" that updates a field >>> in the database, my brilliant idea was to create a thread inside the wicket >>> init method that makes a query to the database eve

Re: Very interesting question... my boss complain about one of my implementations...

2010-05-27 Thread gnul
On Thu, May 27, 2010 at 5:16 PM, Jeremy Thomerson wrote: > On Thu, May 27, 2010 at 5:46 PM, Victor_Trapiello wrote: > >> >> Hello guys! >> >> I had a terrible day because one of my bosses complain about how I have >> done >> one task of a project, we had to implement "something" that updates a fie

Re: Very interesting question... my boss complain about one of my implementations...

2010-05-27 Thread Jeremy Thomerson
On Thu, May 27, 2010 at 5:46 PM, Victor_Trapiello wrote: > > Hello guys! > > I had a terrible day because one of my bosses complain about how I have > done > one task of a project, we had to implement "something" that updates a field > in the database, my brilliant idea was to create a thread insi