Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save javaeeeee/96d160da2db2d56e99fb to your computer and use it in GitHub Desktop.
Dropwizard/Jersey sub-resource method using path parameters
@Path("/path_param/{name}")
@GET
@Produces(MediaType.TEXT_PLAIN)
public String getNamedGreeting(@PathParam(value = "name") String name) {
return "Hello " + name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment