Skip to content

Instantly share code, notes, and snippets.

@musikele
Last active October 28, 2016 13:14
Show Gist options
  • Save musikele/0a32762eddc82d1de801e66029dcdb07 to your computer and use it in GitHub Desktop.
Save musikele/0a32762eddc82d1de801e66029dcdb07 to your computer and use it in GitHub Desktop.
//Groovy version
ratpack {
handlers {
get {
//if you do a GET on http://localhost:5050/ this handler will answer
response.send("Hello World!");
}
path('create') {
byMethod {
post {
// this will be touched in case of POST http://localhost:5050/create
...
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment