Skip to content
Advertisement

Cannot create injector for Guava Service Manager in Dropwizard application

I want to use Guava’s Service Manager to manage services in my Dropwizard application.

ServiceManagerProvider provides the service manager:

JavaScript

ManagedGuavaServices is a Managed object that interacts with the Service Manager to start/stop services:

JavaScript

MyModule is the module where the Guice bindings are specified:

JavaScript

And MyApplication is the Dropwizard application that depends on MyModule:

JavaScript

It seems like everything has been wired together, but when I run the application, I get the error message:

JavaScript

which essentially means that the injected managedServices in MZPaymentApplication is null when the application is run.

What is wrong here? Is it the same problem as in this SO question? If so, where should the @PostConstruct be?

Advertisement

Answer

The problem is in managedServices being field in Application and not injectable, since app object is not configured by Guice (usually in Dropwizard it is created via new keyword). So you should store your GuiceBundle instance in initialize method as field and then access any Guice binding in run method with guiceBundle.getInjector().getInstance(), e.g.:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement