HubSpot/dropwizard-guicier

Name: dropwizard-guicier

Owner: HubSpot

Description: null

Created: 2015-10-30 17:10:36.0

Updated: 2018-04-25 19:34:55.0

Pushed: 2018-04-25 19:34:53.0

Homepage: null

Size: 83

Language: Java

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

dropwizard-guicier

A Dropwizard bundle to handle Guice integration.

Usage
<dependencies>
    <dependency>
        <groupId>com.hubspot.dropwizard</groupId>
        <artifactId>dropwizard-guicier</artifactId>
        <version>1.0.9.1</version>
    </dependency>
</dependencies>

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

ic class ExampleApplication extends Application<ExampleConfiguration> {

blic static void main(String... args) throws Exception {
new ExampleApplication().run(args);


verride
blic void initialize(Bootstrap<ExampleConfiguration> bootstrap) {
GuiceBundle<ExampleConfiguration> guiceBundle = GuiceBundle.defaultBuilder(ExampleConfiguration.class)
    .modules(new ExampleModule())
    .build();

bootstrap.addBundle(guiceBundle);


verride
blic void run(ExampleConfiguration configuration, Environment environment) throws Exception {}

Features
Examples

There is an example project you can clone and play with if you'd like to get going right away.

Enjoy!


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.