https://github.com/cristiangreco/spring-boot-boilerplate
Starter project to develop REST APIs with Spring Boot and Gradle
https://github.com/cristiangreco/spring-boot-boilerplate
gradle heroku java spring-boot
Last synced: over 1 year ago
JSON representation
Starter project to develop REST APIs with Spring Boot and Gradle
- Host: GitHub
- URL: https://github.com/cristiangreco/spring-boot-boilerplate
- Owner: cristiangreco
- Created: 2017-05-28T13:33:37.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2023-11-30T00:14:46.000Z (over 2 years ago)
- Last Synced: 2025-03-22T01:25:12.440Z (over 1 year ago)
- Topics: gradle, heroku, java, spring-boot
- Language: Java
- Size: 655 KB
- Stars: 12
- Watchers: 2
- Forks: 3
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://heroku.com/deploy)
# Spring Boot boilerplate
Quick start for Spring Boot and Gradle.

## How to build
Build with Gradle wrapper:
```sh
$ ./gradlew clean build
```
## How to run
Run with Gradle wrapper:
```sh
$ ./gradlew bootRun
```
Or run it as an executable jar:
```sh
$ java -jar build/libs/spring-boot-boilerplate-0.1.0.jar
```
## Testing with Curl
```sh
$ curl http://localhost:8080/hello
{"message":"Hello, World!"}
```