Skip to content

Instantly share code, notes, and snippets.

@gerjantd
Created April 10, 2014 07:23
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