Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save javaeeeee/bdf0bf5367d712f32fbf to your computer and use it in GitHub Desktop.
A simple Dropwizard/Jersey Resource Class
@Path("/hello")
public class HelloResource {
@GET
@Produces(MediaType.TEXT_PLAIN)
public String getGreeting() {
return "Hello world!";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment