Dropwizard is a Java framework for developing ops-friendly, high-performance, RESTful web services.
I got below exception when I used session.getCurrentSession(). I have mentioned hibernate.current_session_context_class: managed org.hibernate.…
java spring hibernate session dropwizardI want to have several yaml files for DropWizard. One of them contain sensitive info and one non sensitive. Can …
java dropwizardIs there a @RequestBody equivalent in Jersey? @POST() @Path("/{itemId}") @Consumes(MediaType.APPLICATION_JSON) public void addVote(@PathParam("itemId") Integer …
java rest jersey dropwizardI'm having a lot of trouble getting transactions to work with IDBI. We're using the dropwizard framework and simple inserts, …
java mysql transactions dropwizard jdbiI am playing with dropwizard and I want to build a REST application that has various foreign-key relations in the …
dropwizard jdbiI want to restrict some methods if they are being accessed in a non-secure manner. I'm creating a @Secure annotation …
java annotations jersey dropwizardI have posted this question on dw mailing list but didnt get an answer. Can I assume the YML format …
java dropwizardI wanted to add a way to throttle the number of requests coming on each API from a certain client. …
java rest dropwizard throttlingI have a dropwizard app, where I configured logger appenders to file as follows: logging: level: INFO loggers: "mylogger": INFO "…
java logging slf4j logback dropwizardA typical DropWizard application specifies an Application subclass, and override its initialize method like so: class MyApplication extends Application<…
jersey jetty jax-rs dropwizard