Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 589 Bytes

README.md

File metadata and controls

36 lines (23 loc) · 589 Bytes

Deploy

Spring Boot boilerplate

Quick start for Spring Boot and Gradle.

CI

How to build

Build with Gradle wrapper:

$ ./gradlew clean build

How to run

Run with Gradle wrapper:

$ ./gradlew bootRun

Or run it as an executable jar:

$ java -jar build/libs/spring-boot-boilerplate-0.1.0.jar

Testing with Curl

$ curl http://localhost:8080/hello
{"message":"Hello, World!"}