Skip to content

Instantly share code, notes, and snippets.

@tassioauad
Created April 5, 2018 20:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tassioauad/2610f4626417b15cc05006eb8f6ea6b2 to your computer and use it in GitHub Desktop.
Save tassioauad/2610f4626417b15cc05006eb8f6ea6b2 to your computer and use it in GitHub Desktop.
@Component
@Path("hello")
public class HelloWorldResource {
@GET
@Produces("application/json")
public String hello() {
return "Hello, world";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment