Skip to content

Instantly share code, notes, and snippets.

@adamw
Created October 12, 2017 12:35
Show Gist options
  • Save adamw/ac0dfa3d67732e749f95b5200736e68e to your computer and use it in GitHub Desktop.
Save adamw/ac0dfa3d67732e749f95b5200736e68e to your computer and use it in GitHub Desktop.
@Path("/hello")
public class Hello {
@GET
@Produces(MediaType.TEXT_PLAIN)
public String helloWorld() {
return "Hello World";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment