Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is domain driven design? [closed]

So I got this question from one of the developers in my team: What is domain driven design? I could of course point to the book from Evans but is that actually an answer?

How would you explain DDD in a few sentences to junior software engineers in your team?

like image 494
Hace Avatar asked Sep 19 '08 10:09

Hace


People also ask

What do you mean by Domain-Driven Design?

Domain-driven design (DDD) is a software development philosophy centered around the domain, or sphere of knowledge, of those that use it. The approach enables the development of software that is focused on the complex requirements of those that need it and doesn't waste effort on anything unneeded.

Is Domain-Driven Design still relevant?

Domain Driven Design (DDD) has recently gained additional popularity, as evidenced by new books, conference talks, and even complete conferences dedicated to it), and lots of trainings – including some by our very own colleagues here at INNOQ.

What is the opposite of Domain-Driven Design?

Show activity on this post. Pattern Driven Design.

What is Domain-Driven Design O Reilly?

Book description The majority of software projects are delivered late or over budget, or they fail to meet the client's requirements. Attack the problem head-on and build better software with domain-driven design (DDD)—a methodology that aligns software design with a business's domain, needs, and strategy.


1 Answers

I would say this practice promotes concentrating your efforts on the 'problem space' rather than the 'solution space'. Driving an emergent solution (the design) by studying and really getting to know and understand the domain. One of the practices (taken from XP) would be the writing of stories that occur in the problem domain. From these you can identify your use cases and objects for your design. They 'emerge' and tell you what needs to be in the solution, and how they will need to interact with each other.

like image 106
hollystyles Avatar answered Sep 22 '22 19:09

hollystyles