Questions tagged [dropwizard]

Dropwizard stands out as an exceptional Java framework tailored for creating operationally efficient, high-speed RESTful web services.

Tips for handling a JSON payload using Drop Wizard

I currently have a straightforward class named Thing public class Thing { private int id private String name //getters, setters, constructor } I am interested in sending a request with data and handling it. The request structure would be like this ...

Creating snake_case format for definitions in swagger.json within Dropwizard

I am currently working with the dropwizard framework on a project where I have implemented the @JsonSnakeCase annotation to convert CamelCase format to snake_case. However, when I attempt to generate swagger.json using swagger annotations, the definitions ...

Using Dropwizard and Jersey for authenticating users and passing JSON parameters

Is there a way to create a REST interface method for a resource like the following example? @POST @Consumes(MediaType.APPLICATION_JSON) public void add(@Auth User user, @Valid Food food) { //consume } Unfortunately, attempting to implement this me ...