Skip to content

Instantly share code, notes, and snippets.

@ranraj
Last active August 29, 2015 14:08
Show Gist options
  • Save ranraj/3294d320273b09eaee14 to your computer and use it in GitHub Desktop.
Save ranraj/3294d320273b09eaee14 to your computer and use it in GitHub Desktop.
Webservice
@GET
@Path("/v1/market/{key}")
@Produces(MediaType.APPLICATION_JSON)
public Response getMarketByKey(@PathParam("key") String key) throws ApplicationException {
}
/*when the variable present in the requested url path then the parameter need to be specified using @PathParam*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment