April 2018
Intermediate to advanced
300 pages
7h 41m
English
The logical architecture of the sample application represents two microservices, namely the identity service and vendor service. The identity service is used to perform user authentication and authorization, whereas the vendor service is used to perform vendor registration:

We will be using the DDD approach to articulate the data model, where each service will have its own corresponding tables.
The vendor service is based on business domain and is divided into three layers, namely the API that exposes HTTP endpoints and is used by the client, the domain that contains domain entities, aggregates, and DDD patterns, and the ...