Quick start for Spring Boot and Gradle.
Build with Gradle wrapper:
$ ./gradlew clean build
Run with Gradle wrapper:
$ ./gradlew bootRun
Or run it as an executable jar:
$ java -jar build/libs/spring-boot-boilerplate-0.1.0.jar
$ curl http://localhost:8080/hello
{"message":"Hello, World!"}