Advertisement
Guest User

Untitled

a guest
Mar 17th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.21 KB | None | 0 0
  1. $ cat Helloworld.groovy
  2. @RestController
  3. class HelloworldController {
  4.   @RequestMapping("/")
  5.   String home() {
  6.     return "Hello world!"
  7.   }
  8. }
  9. $ spring run Helloworld.groovy
  10. $ curl localhost:8080
  11. Hello world!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement