Spring-boot based backend with Swagger api documentation enabled
./gradlew build && java -jar build/libs/backend-0.0.1-SNAPSHOT.jar
mvn spring-boot:run
To use vist: http://localhost:8080/
Navigate to http://localhost:8080/swagger-ui.html to find the swagger documentation (generated automatically)
mvn verify
As you add / modify the source code (src/main/java/...
) it's very useful to add unit testing
to (src/main/test/...
). The following resources are quite useful: