A simple getting started project to help you understand a simple Spring Boot Project.
Detail | Version |
---|---|
Maven | 3.3.7 |
JDK | 1.8 |
docker-compose up
docker-compose run --rm web mvn package
- war file is at:
target/{{artifactId}}-{{version}}.jar
docker-compose run --rm web mvn test
Generate a coverage report:
docker-compose run --rm web mvn cobertura:cobertura
- Covertura report is at:
target/site/cobertura/index.html
docker-compose up
To see how this application was built. See: Building a RESTful Service
- Code lives in:
src/main/{package}/{file}.java
- Tests lives in:
src/test/{package}/{file}Test.java