当前位置:网站首页>Domain Driven Design - MDD
Domain Driven Design - MDD
2022-08-05 01:52:00 【台塑】
I. MDD
In domain-driven design, the most important thing is Model Driven Development, model-driven development (MDD).There is a famous saying in the programming world "rely on the abstract rather than on the concrete".This is both a principle of design and a process in MDD.The model is abstracted from the specific business through thinking.
In the early software development, there are generally clear and specific requirements, and the industry is relatively fixed.Such software does not have high design requirements or the design cannot play an important role in it.As the saying goes, "kill a chicken with a butcher's knife".But this does not mean that design is not important. As the complexity and scale of software businesses continue to grow, the importance of software design is increasingly reflected.
In this process, the fixed mode and the work that is relatively easy to separate from the actual business are more conducive to the rapid introduction of the design, and the actual situation is also the same.But the complex business and the parts that are inextricably linked to the business are difficult to abstractly design.However, it does not mean that it is impossible. Domain design is the way to solve this practical scenario, and whether it is possible to abstract the actual energy into a model, which can drive the development of the entire business logic.A good model can not only have better business flexibility and scalability, but also can be jointly improved by different application personnel with the help of a common language, and finally guide software coding to realize business functions.
A key point here is that in the previous model design, the model is the model, and the program design is the design, and the two are basically separated, but in MDD, the boundaries between the two are blurred, or theThe two should be organically unified.That's the point, a model, used synchronously.
When it comes to MDD, we have to mention MDA, MDA, Model Driven Architecture, Model Driven Architecture, which was proposed by the International Object Management Group (OMG, Object Management Group) in July 2001 based on the formalization of MDDmodel-driven architecture.The so-called driver architecture is actually the separation of models and technologies to achieve portability, interoperability and reusability.Due to the decoupling of the business code, it can better adapt to the expansion and adaptability of the two levels.Iterative development of technology and changes in business have no impact on each other.
The description of MDD can use some familiar modeling standards (UML, MOF, XMI, etc.) to achieve readability.
With MDD, there will be MDF, that is, MDD Framework, a model-driven development framework. After all, it is meaningless to build something from scratch and constantly recreate some wheels.At the same time, it can occupy the market, make high-profile money, and serve multiple purposes with one stone. It is the best to engage in frameworks.There is no description of the MDF framework here, and the focus is on MDD.
Second, the core of MDD
What is the core of MDD?The consistency between the model and the design must be strictly guaranteed within a controllable range.As mentioned earlier, MDD is to ensure the adaptability of the model. It cannot be like pure model design. In the actual development stage, the model basically has no effect.MDD maintains the availability of the entire model throughout the programming development cycle.It is necessary to use some development tools and auxiliary means on this basis.For example, the requirements for some paradigms and the matching degree of tools.
As long as a practical model is designed, software development is actually a unified iterative process of continuously refining the model, design and code.
Three, MDD driver process
First of all, it is necessary to understand some professional terms of MDD: domain, bounded context, association, entity, value object, domain service, etc.These will be explained in detail later, here we will focus on the driving process:
1. Deriving the preliminary domain and bounded context (module) from the actual business scenario, as well as the relationship between the contexts;
2. Analyzing the context and dividingEntities and value objects;
3. Associate aggregate entities and value objects to obtain aggregate categories and aggregate roots;
4. Design repository (repository) from aggregate roots, and design how to create entities and value objects;
5. Apply the model and constantly reconstruct the model in practice.
Four. Summary
To learn any kind of knowledge, you must grasp the main part and follow the outline.Enter the space without gaps.Domain design, first of all to do a good job of MDD, the ability of abstract model is the ability of your domain design.To have the ability to have a good abstract model, in addition to being sensitive to the domain division (that is, the boundary) of the business itself, have a good domain idea, be familiar with the means and methods of model creation, and have a deep grasp of technology applications.To create a good domain model.
Learn more, apply more, think more, and improve the level of thinking.
边栏推荐
猜你喜欢

蓝牙Mesh系统开发四 ble mesh网关节点管理

Method Overriding and Object Class

直播预告|30分钟快速入门!来看可信分布式AI链桨的架构设计

JWT简单介绍

pytorch的使用:卷积神经网络模块

ExcelPatternTool: Excel table-database mutual import tool
![[Word] #() error occurs after Word formula is exported to PDF](/img/6a/168ded19d22826b6af974907f480fb.png)
[Word] #() error occurs after Word formula is exported to PDF

source program in assembly language

汇编语言之源程序

【Endnote】Word插入自定义形式的Endnote文献格式
随机推荐
tcp中的三次握手与四次挥手
Why is this problem reported when installing oracle11
“配置”是把双刃剑,带你了解各种配置方法
SAP ERP和ORACLE ERP的区别是哪些?
蓝牙Mesh系统开发五 ble mesh设备增加与移除
迅睿cms网站搬迁换了服务器后网站不能正常显示
dotnet 6 为什么网络请求不跟随系统网络代理变化而动态切换代理
ORA-00604 ORA-02429
GCC: paths to header and library files
使用OpenVINO实现飞桨版PGNet推理程序
XMjs跨域问题解决
优化Feed流遭遇拦路虎,是谁帮百度打破了“内存墙”?
快速批量修改VOC格式数据集标签的文件名,即快速批量修改.xml文件名
Introduction to JVM class loading
<开发>实用工具
How DHCP works
行业现状?互联网公司为什么宁愿花20k招人,也不愿涨薪留住老员工~
PHP技能评测
KingbaseES V8 GIS数据迁移方案(2. Kingbase GIS能力介绍)
领域驱动设计——MDD