Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How should I start DDD?

What is the best way to start Domain Driven Design?

What are the recommended resources?

EDIT:

I mean, I'd like to know how to start learning DDD (the same way as to start TDD by reading K. Beck).

like image 787
rafek Avatar asked Jan 28 '10 08:01

rafek


People also ask

What is DDD example?

An aggregate is a domain-driven design pattern. It's a cluster of domain objects (e.g. entity, value object), treated as one single unit. A car is a good example. It consists of wheels, lights and an engine.

What are the benefits of DDD?

Advantages of domain-driven design The most obvious advantage of DDD is that it gets everybody using the same language. When development teams use the same language as domain experts, it leads to software design that makes sense to the end user.

What is the goal of DDD?

At first, it sounds very complicated, but the goal of practicing DDD is to handle complex scenarios with a systematic approach in a way that domain experts (stakeholders, product users, etc.) and the development team (product owner, software architects, developers, etc.)


1 Answers

My personal advice is to forget the "DDD Quickly" book and go straight to the "Domain-Driven Design: Tackling Complexity in the Heart of Software" book from Eric Evans. I'd also suggest not to read the book in the original order, but to read the intro and then move to the Strategic Design section, and only then go back to the first part of the book. You'll discover that there's more to DDD than a collection of patterns.

However, after the book has been published there's been some evolution in the DDD community (have a look to this video as a refresher). A new pattern Domain Event has been published, and many alternative supporting architectures have been discussed: CQRS and Event Sourcing above all.

like image 60
ZioBrando Avatar answered Sep 22 '22 15:09

ZioBrando