Skip to content

Instantly share code, notes, and snippets.

@dmi3coder
Last active November 27, 2019 13:40
Show Gist options
  • Save dmi3coder/0ff2f58c5bd7cb079ceaabf28483d2e7 to your computer and use it in GitHub Desktop.
Save dmi3coder/0ff2f58c5bd7cb079ceaabf28483d2e7 to your computer and use it in GitHub Desktop.
Java's annotation example from Spring
@RequestMapping(
value = "/hello", method = GET)
@ResponseBody
public String getHelloMessage() {
return "hello";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment