Skip to content

Instantly share code, notes, and snippets.

@ryctabo
Created January 22, 2018 03:53
Show Gist options
  • Save ryctabo/f40c2f8536179e09129cc3fb78c97ba9 to your computer and use it in GitHub Desktop.
Save ryctabo/f40c2f8536179e09129cc3fb78c97ba9 to your computer and use it in GitHub Desktop.
My first resource with Jersey
@Path("myresource")
public class MyResource {
/**
* Method handling HTTP GET requests. The returned object will be sent
* to the client as "text/plain" media type.
*
* @return String that will be returned as a text/plain response.
*/
@GET
@Produces(MediaType.TEXT_PLAIN)
public String getIt() {
return "Got it!";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment