I'm using 1.4.8 (not the ITL version). I have pass a runnable to an executer, how can I make use of classes that use @Inject?
When I try to do so, it blows up saying "There is no application attached to current thread pool-13-thread-1" The confusing thing is that I inject 2 DAOs and 1 service. The 2DAOs work just fine but the service blows up. I've tried these combinations: 1) @Inject into the page and then pass the reference to the constructor of the runnable 2) Construct the service in the Runnable and call @InjectorHolder.getInjector().inject(service) Neither works. D/