- Hands-On Microservices with Kotlin
- Juan Antonio Medina Iglesias
- 213字
- 2021-06-30 19:10:44
Context mapping
In a large application designed for several bounded contexts, we can lose sight of the global view. It is inevitable that the various bounded contexts will need to share or communicate data between each other. A context map is a global view of the system as a whole, showing how our bounded contexts should communicate with each other.

This is an oversimplified example that shows three bounded contexts and how they are mapped. In the product context, we have our product and the family that it belongs to. Here, we will have all the operations for this domain context in it and it does not have a direct relation dependency to any other context.
Our offers bounded context has a dependency on the product domain context, but this is a weak relation that should purely reflect the ID of the product that a particular offer belongs to. This context will define the operations that contain the domain logic for this context.
In our shopping bound context, we have a weak relation with the product that belongs to a shopping list and will have the operations for this context. Finally, both offers and shopping concept have a relation with the customer that probably belongs to a separated bounding context.
- Rust實戰
- Vue.js入門與商城開發實戰
- Python自動化運維快速入門
- 深度學習:算法入門與Keras編程實踐
- C#程序設計基礎:教程、實驗、習題
- 移動互聯網軟件開發實驗指導
- Django 3.0入門與實踐
- Qlik Sense? Cookbook
- IDA Pro權威指南(第2版)
- 區塊鏈架構之美:從比特幣、以太坊、超級賬本看區塊鏈架構設計
- Natural Language Processing with Python Quick Start Guide
- Mudbox 2013 Cookbook
- WebStorm Essentials
- 3D Printing Designs:Octopus Pencil Holder
- Spring Microservices