Skip to content

Instantly share code, notes, and snippets.

@Joxebus
Created November 12, 2018 23:54
Show Gist options
  • Save Joxebus/2258bb6f7c814d63926b723bed2fd626 to your computer and use it in GitHub Desktop.
Save Joxebus/2258bb6f7c814d63926b723bed2fd626 to your computer and use it in GitHub Desktop.
Example controller groovy for Spring Boot
// app.groovy
@RestController
class ThisIsAnExample {
@RequestMapping('/')
String sayHello(){
"Hello World from Spring Boot + Groovy"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment