• Stars
    star
    133
  • Rank 272,600 (Top 6 %)
  • Language
    Java
  • License
    MIT License
  • Created over 5 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Example project demonstrating the use of Spring-boot in a banking microservice

Spring-boot Banking

Example project demonstrating the use of Java and Spring-boot to build a microservice to be used by an online bank

Running locally

./mvnw clean install -DskipTests=true
java -jar target/Banking-0.0.1.jar

Running on Docker

docker build -t "spring-boot:banking" .
docker run -p 8080:8080 spring-boot:banking

Testing

Import the Postman collection file into the application or copy the request body from there

How to test

  1. Create account

    Use create account API to create an account by providing a bankName and ownerName

    Create Account

Make sure to write down the sortCode and the accountNumber to proceed with other APIs

  1. Deposit Cash

    Use noted accountNumber as targetAccountNo and provide amount greater than zero to deposit cash into an account

    Deposit cash

  2. Check Balance

    Use noted accountNumber and sortCode to check account balance

    Check Balance

  3. Withdraw Cash

    Use noted accountNumber and sortCode and amount grater than zero to withdraw cash from an account

    Withdraw cash

  4. Check Balance again to verify withdrawal

    Check Balance

Extensions

  1. Use of persisted database
  2. Use of asynchronous programming backed by message queue for transactions
  3. Others mentioned throughout the code