Top "Dropwizard" questions

Dropwizard is a Java framework for developing ops-friendly, high-performance, RESTful web services.

DropWizard/Jersey API Clients

DropWizard uses Jersey under the hood for REST. I am trying to figure out how to write a client for …

java rest jersey dropwizard webservices-client
Add jetty servlet into dropwizard

I need to add jetty servlet into my already existing server implemented using dropwizard framework. To be more specific: I …

java servlets jetty dropwizard
Configure dropwizard to server index.html for (almost) all routes?

I'm building a single page application which does all of it's html request routing on the client side and on …

java configuration jetty dropwizard
Dropwizard ScheduledExecutorService

In my case I need to run some scheduled tasks (e.g. every minute) doing some checks in DB and …

java scheduled-tasks dropwizard
how can i return 404 http status from dropwizard

new to dropwizard! is there anyway that I can manually return different http status codes from the apis? basically something …

dropwizard
how to get my configuration values in yml - using dropwizard (microservice) Jersey D.I @Injection?

here's my code snippets. here's my yml file: productionServer: host: production-server.amazonaws.com publicIp: xx.xx.xx.xx privateIp: xx.…

java jersey dropwizard inject microservices
How to use IN operator with JDBI?

I'm trying to do a IN query using MYSQL JDBI on Dropwizard (not relevant, I assume). @SqlQuery("SELECT id FROM …

java mysql dropwizard jdbi