oddy-bassey / ZuBank-ws

A ZuBank work-space project for a simple bank application

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ZuBank Workspace

This work-space project features a collections of services and libraries which form the architecture of my ZuBank application

Contained Modules

System Architecture

The entire application is built using the Microservice architecture. This architecture facilitates the building of large scale systems in a rapid and reliable style by breaking down the system into smaller, independent modules which work together as a single integral system to deliver the desired application. While using the "Microservice architecture", the Gateway design pattern is being employed to serve as a single entry point between the client application and a collection of microservices which deliver certain functionalities in a defined problem domain. The gateway pattern provides and facilitates certain functional structures that address cross-cutting concerns across microservices like, inter-service communication, security, fault tolerance, request routing, load balancing etc..
Below are the components/tools/technologies fundamental to this defined structure: 1)Gateway

  • Loadbalancer
  • Security (Keycloak)
  1. Discovery server (Eureka discovery server)
  2. Circuit breaker (fault tolerance)
  3. OpenFeign (for http client communication #inter-service communication)
  4. microservices (SpringBoot apps etc)
  5. Databases (H2 and Mongodb)
  6. Event queue (Kafka)
  7. Containerization (Docker)
  8. CI/CD (CircleCI)
  9. Testing (JUnit5 & Mockito)
    the below image shows an illustration of the system architecture. alt text

Database Structure


The database structure of this system is presented using an ERD (Entity Relationship Diagram). This diagram provides a diagrammatic representation which defines all tables as entities with defined properties (in the context of columns) and expresses entity relationships to define how the entities(tables) relate with one another using links. The below image shows an illustration of the database structure.

alt text

Bank account service

This module (service) being the key point of this application is being implemented using CQRS (Command and Query Responsibility Segregation) and Event-Sourcing. CQRS entails the separation of the read and query parts of an application as separate concerns. This is important because CQRS allows us to scale up the command and query sides independently... Example: In applications where the reads out-numbers the writes or vice-versa, this is a great advantage since each can independently be scaled. Event-Sourcing on the other-hand defines an approach where all changes made to an object or entity are stored as a sequence of immutable events to an event store, rather than storing just the current state. This pattern is often used with the CQRS pattern to perform the data management tasks in response to events. In a nutshell, once a command request is made to the command api and the command handled, it typically alters the state of the domain model (aggregate) which then raises an event which is appended (persisted) to the list of events in the event-store. This event is then produced/published into an event bus(Kafka) from where the query api consumes the event and handles the event by updating the associated record in the read database. Please note that the query api has data sovereignty over the read database (Accounts).

NOTE : for more detailed information as to how both domains (Command & Read service) implement this pattern, please have a look at each individual repositories.

alt text

How to run the application ?

To be able to run the application, you would need to carry out the following steps

  1. create a docker network
    docker network create --attachable -d bridge zubankNet
  2. Run this docker-compose file to start the services
    docker-compose up -d
  3. Click to access the client app dashboard alt text

About

A ZuBank work-space project for a simple bank application


Languages

Language:Java 71.0%Language:JavaScript 16.0%Language:HTML 11.9%Language:CSS 0.6%Language:Dockerfile 0.5%