dropwizard-guicier
dropwizard-guicier copied to clipboard
My app builds the guice bundle in the following way: ``` guiceBundle = GuiceBundle.defaultBuilder(DWConfiguration.class) .modules(appModule) .build(); ``` The jersey resource is like this: ``` @Path("/") @Produces(APPLICATION_JSON) public class AppResource {...
How is one able to retrieve/ setup the `AuthDynamicFeature ` using this Bundle? `Provider` are not yet established and the injector is not ready until the `run()` phase. Can you...
I want to use Gruicer for DI in my dropwizard app, I am on DW version 1.3.7 Added following dw dependency com.hubspot.dropwizard dropwizard-guicier 1.3.5.0 Getting following error while starting the...
I've just upgraded to `dropwizard-guicier` and have a question regarding the logic used [in the ServiceLocatorGenerator installed here](https://github.com/HubSpot/dropwizard-guicier/blob/f5cd2a83fcc566e644f180b9f5cd319d5038fab2/src/main/java/com/hubspot/dropwizard/guicier/GuiceBundle.java#L108). In previous versions of this repo and [in `dropwizard-guice`](https://github.com/HubSpot/dropwizard-guice/blob/c64a954146c8e1b5408539ad2ee018716797b677/src/main/java/com/hubspot/dropwizard/guice/GuiceBundle.java#L114) the Guice `Injector`...