Skip to content

Instantly share code, notes, and snippets.

@javaeeeee
Created January 24, 2015 08:59
Show Gist options
  • Select an option

  • Save javaeeeee/ada94226a446e10120de to your computer and use it in GitHub Desktop.

Select an option

Save javaeeeee/ada94226a446e10120de to your computer and use it in GitHub Desktop.
A simple Dropwizard/Jersey sub-resource serving JSON
@Path("/hello_json")
@GET
@Produces(MediaType.APPLICATION_JSON)
public Greeting getJSONGreeting() {
return new Greeting("Hello world!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment