DOCUMENTATION: http://xvik.github.io/dropwizard-guicey/
Additional repositories:
Support:
Dropwizard 1.3.7 guice 4.2.2 integration.
Originally inspired by dropwizard-guice and dropwizardy-guice (which was derived from first one).
Features:
- Guice injector created on run phase
- Auto configuration (classpath scan)
- Configuration bindings by path or unique sub configuration object
- Support guice ServletModule and servlet 3.0 annotations (on both contexts)
- Dropwizard style reporting
- Admin context rest emulation
- Tests support for junit and spock
- Developer friendly: includes debugging tools and api for extensions
- Flexible HK2 integration
- SĂ©bastien Boulet (intactile design) for very useful feedback
- Nicholas Pace for governator integration
Releases are published to bintray jcenter (package appear immediately after release) and then to maven central (require few days after release to be published).
May be used through extensions project BOM or directly.
Maven:
<dependency>
<groupId>ru.vyarus</groupId>
<artifactId>dropwizard-guicey</artifactId>
<version>4.2.2</version>
</dependency>
Gradle:
compile 'ru.vyarus:dropwizard-guicey:4.2.2'
Dropwizard | Guicey |
---|---|
1.3 | 4.2.2 |
1.1, 1.2 | 4.1.0 |
1.0 | 4.0.1 |
0.9 | 3.3.0 |
0.8 | 3.1.0 |
0.7 | 1.1.0 |
Guicey pom may be also used as maven BOM:
plugins {
id "io.spring.dependency-management" version "1.0.6.RELEASE"
}
dependencyManagement {
imports {
mavenBom 'ru.vyarus:dropwizard-guicey:4.2.2'
// uncomment to override dropwizard version
// mavenBom 'io.dropwizard:dropwizard-bom:1.3.7'
}
}
dependencies {
compile 'ru.vyarus:dropwizard-guicey:4.2.2'
// no need to specify versions
compile 'io.dropwizard:dropwizard-auth'
compile 'com.google.inject:guice-assistedinject'
testCompile 'io.dropwizard:dropwizard-test'
testCompile 'org.spockframework:spock-core'
}
Bom includes:
- Dropwizard BOM (io.dropwizard:dropwizard-bom)
- Guice BOM (com.google.inject:guice-bom)
- HK2 bridge (org.glassfish.hk2:guice-bridge)
- System rules, required for StartupErrorRule (com.github.stefanbirkner:system-rules)
- Spock (org.spockframework:spock-core)
Guicey extensions project provide extended BOM with guicey and all guicey modules included. See extensions project BOM section for more details of BOM usage.
You can use snapshot versions through JitPack:
- Go to JitPack project page
- Select
Commits
section and clickGet it
on commit you want to use (top one - the most recent) - Follow displayed instruction: add repository and change dependency (NOTE: due to JitPack convention artifact group will be different)
Read documentation
- generics-resolver - runtime generics resolution
- guice-validator - hibernate validator integration for guice (objects validation, method arguments and return type runtime validation)
- guice-ext-annotations - @Log, @PostConstruct, @PreDestroy and utilities for adding new annotations support
- guice-persist-orient - guice integration for orientdb
- dropwizard-orient-server - embedded orientdb server for dropwizard