How will I configure jackson to use snake case in dropwizard instead of putting @JsonSnakeCase in every class ?
Just add this following line in your run() method
environment.getObjectMapper().setPropertyNamingStrategy( PropertyNamingStrategy.CAMEL_CASE_TO_LOWER_CASE_WITH_UNDERSCORES);