Skip to content

Instantly share code, notes, and snippets.

@gerjantd
Created April 10, 2014 07:23
Show Gist options
  • Save gerjantd/10351278 to your computer and use it in GitHub Desktop.
Save gerjantd/10351278 to your computer and use it in GitHub Desktop.
Spring boot/Groovy tiny webapp
@RestController
class TinyWebapp {
@RequestMapping("/")
String home() {
return "Hello world!"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment