Guice is a lightweight dependency injection framework for Java.
I am trying to figure out an easy way to map DTOs to entities without the boiler-plate code. While I …
guice dto dozer dto-mappingI have a provider method in a module annotated with @Provides: @Provides public ChatServicePerformanceMonitor getChatServicePerfMon() { ... } and I have annotated my …
guiceI am extending Guice's AbstractModule and inside of the extending class I need access to Guice's injector. It that possible, …
java dependency-injection guiceI am getting a strange runtime error from my code: "Found interface [SomeInterface] but class was expected" How can this …
java guiceI gave to Google Guice the responsibility of wiring my objects. But, how can I test if the bindings are …
java testing dependency-injection guiceLet's say I have two applications sharing the same library. This library contains common classes like DAOs, Utils, etc. Everything …
java dependency-injection guiceIf I have interface Validator and multiple implementations for this interface. How can I inject any of the multiple implementations …
java guiceUsing Guice, if I have @Inject @Named("light") Color light; I can use bind(Color.class).annotatedWith(Names.named("light")) .…
java dependency-injection guiceI've read about Google Guice, and understand the general issues with other approaches to dependency injection, however I haven't yet …
java guice