Created
June 23, 2015 17:11
-
-
Save danhyun/cadd17407e77828d55c9 to your computer and use it in GitHub Desktop.
Simple Ratpack Hello World groovy script
This file contains 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
@GrabResolver(name="OJO", root="https://oss.jfrog.org/artifactory/repo") | |
@Grab("io.ratpack:ratpack-groovy:0.9.18-SNAPSHOT") | |
import static ratpack.groovy.Groovy.ratpack | |
ratpack { | |
handlers { | |
get { | |
render "Hello, World" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment