Re: T5 initialize and start a service through the ioc container

2007-05-22 Thread Howard Lewis Ship
I think you are on the right track. @EagerLoad on the service builder method (or on the service implementation class if using the ServiceBinder) will generally do the trick. However, if you have any dependencies, it gets trickier because Tapestry has to fully initialize before some dependencies

T5 initialize and start a service through the ioc container

2007-05-22 Thread David Avenante
Hi, I try to initialize and start a service when my webapp start. My service is a simple Quartz scheduler with a job. But i've some trouble to start the service. As i can see Tapestry IOC use lazy initialization so my service is build only when used. My code in my Appodule.java is like : //