Dropwizard is a Java framework for developing ops-friendly, high-performance, RESTful web services.
I have a Dropwizard based Jersey REST service running on the default ports 8080(service) and 8081(admin), I need to change …
java rest jersey dropwizardI have a Dropwizard application that needs to generate a dozen or so beans for each of the configs in …
java spring spring-mvc dropwizardI am learning the DropWizard Metrics library (formerly Coda Hale metrics) and I am confused as to when I should …
java timer dropwizard metrics codahale-metricsI'm using Dropwizard (1.0.0) and Liquibase to create a database if it's not existing. Problem here is that I'm using a …
java postgresql liquibase dropwizardI have this VO public class myVO { private final String latitude; private final String longtitude; private final String meterRadius; public …
java rest curl jersey dropwizardLooking for a dropwizard example I found: https://github.com/codahale/dropwizard/tree/master/dropwizard-example But I am interested in …
dropwizardI'm trying to understand how authentication and authorization work in DropWizard. I've read their auth guide as well as the …
java jersey jax-rs basic-authentication dropwizardI'm working on a dropwizard application and js ui to interacte with the api. I need to load json data …
java dropwizardI am currently building a Dropwizard + Guice + Jersey-based application where the database access is being handled by JDBI for the …
dependency-injection guice dropwizard jdbiI'm creating a simple REST application with dropwizard using JDBI. The next step is to integrate a new resource that …
java join one-to-many dropwizard jdbi