Re: [appengine-java] Re: Spring TimerFactoryBean and ScheduledTimerTask not working on AppEngine??

2009-12-30 Thread yjun hu
I try schedule with spring on GAE, and it does not work too. GAE has some function like cron jobs with 'cron.xml', you can try it http://code.google.com/appengine/docs/java/config/cron.html On Thu, Dec 31, 2009 at 6:34 AM, Juri wrote: > Indeed, the TimerTask class implements Runnable...damn. >

[appengine-java] Re: Spring TimerFactoryBean and ScheduledTimerTask not working on AppEngine??

2009-12-30 Thread Juri
Indeed, the TimerTask class implements Runnable...damn. Didn't know that threads aren't allowed. Thx On Dec 30, 11:31 pm, Marcel Overdijk wrote: > Are those Spring classes creating threads? This is not allowed on GAE. > > On 30 dec, 22:17, Juri wrote: > > > > > Hi, > > > I configured a TimerFac

[appengine-java] Re: Spring TimerFactoryBean and ScheduledTimerTask not working on AppEngine??

2009-12-30 Thread Marcel Overdijk
Are those Spring classes creating threads? This is not allowed on GAE. On 30 dec, 22:17, Juri wrote: > Hi, > > I configured a TimerFactoryBean through my Spring configuration file > which launched a ScheduledTimerTask in given time intervals for > performing some work. Locally when developing wit