Skip to content

Instantly share code, notes, and snippets.

@nikhil3000
Created June 21, 2020 17:47
Show Gist options
  • Save nikhil3000/4c51567dbdbed1e1b92ee5422b5dd66f to your computer and use it in GitHub Desktop.
Save nikhil3000/4c51567dbdbed1e1b92ee5422b5dd66f to your computer and use it in GitHub Desktop.
@Path("/getData")
@Produces(MediaType.APPLICATION_JSON)
public class Route {
@GET
public String getData() {
String s = "Hello world";
return s;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment