How can I get Guice call my (Singleton) object's method AFTER the object graph has been built, and its dependencies have been injected? Is there an annotation that allows this?
At the moment I'm using constructor injection, which seems to guarantee that all the dependencies are there, and call my method from the constructor. But this seems like an awkward solution.