This project was born with the aim of providing a sample microservice application with TDD.
-
This microservice will store client accounts in a mysql DB and have swagger as API Interface.
-
POST invocation (body example) to /accounts:
{ "accountId": "010340430A", "alias": "yourself", "amount": 123, "number": "pepe", "currency":"CAD", "type":"outgoings" }
-
GET invocation ( Response body example) to /accounts/010340430A:
{ "accountId": "010340430A", "alias": "yourself", "amount": 123, "number": "pepe", "currency":"CAD", "type":"outgoings" }
Account application is intended to demonstrate the basics concepts of a microservices architecture.