You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.
Example project demonstrating the use of Spring-boot in a banking microservice
Notifications You must be signed in to change notification settings
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Go to fileExample project demonstrating the use of Java and Spring-boot to build a microservice to be used by an online bank
./mvnw clean install -DskipTests=true
java -jar target/Banking-0.0.1.jar
docker build -t "spring-boot:banking" .
docker run -p 8080:8080 spring-boot:banking
Use create account API to create an account by providing a bankName and ownerName
Make sure to write down the sortCode and the accountNumber to proceed with other APIs
Use noted accountNumber as targetAccountNo and provide amount greater than zero to deposit cash into an account
Check Balance
Use noted accountNumber and sortCode to check account balance
Withdraw Cash
Use noted accountNumber and sortCode and amount grater than zero to withdraw cash from an account
Example project demonstrating the use of Spring-boot in a banking microservice