Created
April 10, 2014 07:23
-
-
Save gerjantd/10351278 to your computer and use it in GitHub Desktop.
Spring boot/Groovy tiny webapp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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