Example project demonstrating the use of Java and Spring-boot to build a microservice to be used by an online bank
./mvnw clean package
java -jar target/Banking-0.0.1.jar
docker build -t "spring-boot:banking" .
docker run -p 8080:8080 spring-boot:banking
- Import the Postman collection file into the application or copy the request body from there
- Use of persisted database
- Use of asynchronous programming backed by message queue for transactions
- Others mentioned throughout the code