Skip to content

eabbott/dropwizard-guice

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dropwizard-Guice

A simple DropWizard extension for integrating Guice via a bundle. It optionally uses classpath scanning courtesy of the Reflections project to discover resources and more to install into the dropwizard environment upon service start.

Usage

Simply install a new instance of the bundle during your service initialization

public class HelloWorldService extends Application<HelloWorldConfiguration> {

  public static void main(String[] args) throws Exception {
		new HelloWorldService().run(args);
	}

    @Override
    public String getName() {
        return "hello-world";
    }

    @Override
    public void initialize(Bootstrap<HelloWorldConfiguration> bootstrap) {
        bootstrap.addBundle(GuiceBundle.newBuilder()
            .addModule(new HelloWorldModule())
            .build()
        );
    }

	@Override
	public void run(HelloWorldConfiguration configuration, final Environment environment) {
		environment.jersey().register(HelloWorldResource.class);
		environment.healthChecks().register("Template", TemplateHealthCheck.class);
	}

}

Lastly, you can enable auto configuration via package scanning.

public class HelloWorldService extends Service<HelloWorldConfiguration> {

  public static void main(String[] args) throws Exception {
        new HelloWorldService().run(args);
    }

    @Override
    public void initialize(Bootstrap<HelloWorldConfiguration> bootstrap) {
        bootstrap.setName("hello-world");
        bootstrap.addBundle(GuiceBundle.newBuilder()
            .addModule(new HelloWorldModule())
            .enableAutoConfig(getClass().getPackage().getName())
            .build()
        );
    }

    @Override
    public void run(HelloWorldConfiguration configuration, final Environment environment) {
        // now you don't need to add resources, tasks, healthchecks or providers
        // you must have your health checks inherit from InjectableHealthCheck in order for them to be injected
    }

}

Please fork an example project if you'd like to get going right away.

Enjoy!

About

Adds support for Guice in Yammer's DropWizard damn simple library for building production-ready RESTful web services.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published