- Java EE 8 and Angular
- Prashant Padmanabhan
- 185字
- 2021-07-02 19:22:38
Follow domain-driven design
Focus on the responsibility that the microservice is trying to meet. The scope of the service is more important than the lines of code used to build it. Teams would usually sit together and build an understanding of the domain from the domain experts. Once the domain is understood, then it is modeled as domain objects, which can be further grouped as sub-domains. In a monolith, the entire domain model is within a single application, but the microservice architecture would lead your domains to be used within different business contexts.
Bounded Contexts is a term used in DDD, which maps the domain entities within the context of its usage. A payment microservice might require a domain entity such as User, to be used for billing purposes, and thus the User entity may need to have payment details associated with it. But if the same domain entity is used in a notification service, then the payment information is an additional detail, which shouldn't get leaked into this service.
The idea of a bounded context is further explained in the section on Single Responsibility.
- JavaScript前端開發模塊化教程
- JavaScript從入門到精通(微視頻精編版)
- 數字媒體應用教程
- 信息可視化的藝術:信息可視化在英國
- Python Tools for Visual Studio
- Microsoft Dynamics GP 2013 Reporting, Second Edition
- Expert Android Programming
- Spring Boot企業級項目開發實戰
- Visual C++開發入行真功夫
- PyQt編程快速上手
- 計算機應用基礎(第二版)
- Java EE 8 and Angular
- Selenium WebDriver Practical Guide
- ASP.NET Core and Angular 2
- C++面向對象程序設計教程