How do I create different Objects using Google Guice?
- by kunjaan
I have a Module which binds an Interface to a particular implementation.
I use that module to create an object. How do I create a different kind of object with the the interface bound to a different implementation?
Do I need to create a new module with the Interface bound to a different implementation?