Start PostgresSQL db container.
cd docker
docker comose up -d postgres
Build & Run.
./mvnw clean package
java -jar target/spring-mvc-mybatis-0.0.1-SNAPSHOT.jar
or
./mvnw spring-boot:run
Default swagger url is http://localhost:18888/swagger-ui.html.
Build docker image.
./mvnw compile jib:dockerBuild
Run PostgresSQL db and todo application container.
cd docker
docker compose up -d
./mvnw test -Dtest="*IT"