Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 2.85 KB

domain-driven-design.md

File metadata and controls

38 lines (32 loc) · 2.85 KB

Bookmarks tagged [domain-driven-design]

https://lostechies.com/joeocampo/2007/04/23/a-discussion-on-domain-driven-design-value-objects/

Entities have a lot of overhead associated with them. They have a full lifecycle from cradle to grave. They also have identity which forces the domain model to be very expressive in tracking and coord...


https://www.martinfowler.com/bliki/AnemicDomainModel.html

The basic symptom of an Anemic Domain Model is that at first blush it looks like the real thing. There are objects, many named after the nouns in the domain space, and these objects are connected with...


https://github.com/heynickc/awesome-ddd#readme

A curated list of Domain-Driven Design (DDD), Command Query Responsibility Segregation (CQRS), Event Sourcing, and Event Storming resources - heynickc/awesome-ddd


https://martinfowler.com/bliki/BoundedContext.html

Bounded Context is a central pattern in Domain-Driven Design. It is the focus of DDD's strategic design section which is all about dealing with large models and teams. DDD deals with large models by d...


https://www.infoq.com/articles/ddd-contextmapping

Many approaches to object oriented modeling tend not to scale well when the applications grow in size and complexity. Context Mapping technique can be used to manage the complexity in large softwa...