Domain Driven Design
Tom Kocjan
I3Logix Inc.
What is DDD?
• It is a way of thinking and a set of priorities,
aimed at accelerating software projects that
have to deal with complicated domains.
• A Model driven software design approach
used to tackle the complexity of software
projects.
• Collection of principles and patterns that help
developers craft elegant systems.
Domain A sphere of knowledge or activity.
What an organization does and the world it does
it in.
Model A system of abstractions that describes
selected aspects of a domain and ignores
extraneous detail. Explains a complex domain in
a simple way.
A model is a distilled form of domain
knowledge, assumptions, rules and choices.
Definitions
Domain Driven Design (DDD)
Domain Driven Design (DDD)
DDD is a
Set of Driving Principles
• Speak a Ubiquitous Language within an
explicitly Bounded Context.
• Explore models in a creative collaboration of
domain practitioners and software
practitioners.
• Focus on the Core Domain.
• Model and implementation are bound...
developers are also responsible for the model.
Ubiquitous Language A language structured
around the domain model and used by all
team members to connect all the activities of
the team with the software.
Use it consistently in speech, documentation,
diagrams and code.
A Change in Ubiquitous Language <=> Change in
Model and Code.
Ubiquitous Language
The model we want…
• Helps us solve specific problems in our
domain.
• Is not necessarily “realistic”.
• Forms the basis of a language.
• Should remain current.
London Tube Map
Expressing the Model
• The model can be expressed through class
diagrams, explanatory diagrams, sequence
diagrams or whatever conveys the model.
• But, the design document is not the model!
The design document's purpose is to help
communicate and explain the model.
• The model is ultimately expressed in the code.
DDD is Agile and Iterative
The problem with Big Design Up Front:
• Models are distilled knowledge.
• At the beginning of a project, the team is as
ignorant as it will ever be.
• Up Front Analysis Locks in Ignorance!
Big Design Up FrontBig Design Up Front
The DDD ProcessThe DDD Process
Domain Driven Design (DDD)
One Team, One Language, One ModelOne Team, One Language, One Model
A Complex DomainA Complex DomainA Complex DomainA Complex Domain
Bounded Context An operational definition of
where a particular model is well-defined and
applicable. (Typically a subsystem, or the work
owned by a particular team).
Subdomain Part of the domain, based on a
particular conceptual decomposition of the
domain.
Breaking Down a Complex Domain
The Problem Space
Domain Driven Design (DDD)
Domain Driven Design (DDD)
The Solution Space
Layered Architecture
User Interface Responsible for presenting information to the
user and interpreting user commands.
Application This is a thin layer which coordinates the
application activity. It does not contain business logic. It does
not hold the state of the business objects.
Domain This layer contains information about the domain. This
is the heart of the business software. The state of business
objects is held here. Persistence details delegated to the
Infrastructure layer.
Infrastructure This layer acts as a supporting library for all the
other Layers. It provides communication between layers,
implements persistence for business objects, contains
supporting libraries for the user interface layer, etc.
Layers
Model Expressed in Software
• Entities
• Value Objects
• Aggregates
• Services
• Associations
• Factories
• Repositories
• Modules
• Context Mapping
Entities
• Objects which have an identity which remains
the same throughout the states of the
software.
• Must be distinguished from other similar
objects having the same attributes. (e.g. Bank
Account for Jim Smith)
• Attributes of an entity can change. (Mutable)
• Entities should have behavior. (Business Logic)
• No persistence behavior!
Value Objects
• Value Objects are the “things” within your
model that have no uniqueness.
• They are only equal to another Value Object if
all their attributes match.
• Value Objects are interchangeable.
• Attributes of a Value Object cannot change,
they must be replaced. (Immutable)
• Examples: Money, Address (usually), DTO
Aggregates
• An Aggregate is a cluster of Entities and Value
objects. (Object Graph) Each aggregate is treated as
one single unit.
• Each Aggregate has one root entity know as the
Aggregate Root.
• The root identity is global, the identities of entities
inside are local.
• External objects may have references only to root.
• Internal objects cannot be changed outside the
Aggregate.
Aggregates
Associations
• Impose a traversal direction.
• Add a qualifier, reduce multiplicity.
• Eliminate non essential associations.
Application “if the banking application can convert and export
our transactions into a spreadsheet file... that export is an
APPLICATION SERVICE”
Domain “If a service were devised to make appropriate debits
and credits for a found transfer, that capability would be a
DOMAIN SERVICE”
Infrastructure “a bank might have an application that sends an
e-mail. The interface that encapsulates the email system is an
INFRASTRUCTURE SERVICE”
Services Reside in Multiple Layers
Domain Services
• A Domain Service is Business Logic in the
domain that are not a natural part of an Entity
or Value Object.
• Services usually manipulate multiple Entities
and Value Objects.
• Services are stateless!
• A service has to be offered as an interface that
is defined as a part of the model. Its
parameters and results should be domain
objects.
Factories
• An object whose responsibility is the creation
of other objects.
• Create and manage complex domain objects.
• Especially useful for creating aggregates.
Repositories
• A Repository encapsulates domain objects
persistence and retrieval.
• Clean separation and one-way dependency
between the domain and data mapping layers.
• May encapsulate different fetching strategies,
distributed caching, NoSQL, Web Service, etc.
• Acts as a collection except with more
elaborate querying capability.
• One Repository per Aggregate!
Modules
• Break up your domain to reduce complexity
• High cohesion within module, loose coupling
between modules.
• Becomes part of the ubiquitous language
• Helps with decoupling
• Aids in extensibility
Context Mapping
• Mapping the contact points and translations
between bounded contexts.
Patterns for Context Mapping
• Shared Kernel
• Customer/Supplier
• Conformist
• Anti-corruption Layer
• Separate Ways
Resources
These are not the same:
•
Subdomain – Decomposition of the domain.
•
Module – Decomposition of the model and
associated software.
•
Aggregate – Decomposition of the run-time
data.
•
Service – Decomposition of functionality.
•
Bounded Context – Linguistic boundary
marking the applicability of distinct models.
Command Query Responsibility Segregation (CQRS)
The data that a client needs from the model is screen
based and different than the domain model.
CQRS Implementation

More Related Content

PPTX
Domain Driven Design(DDD) Presentation
PPTX
Domain Driven Design: Zero to Hero
PPSX
Domain Driven Design
PPTX
Domain Driven Design - Strategic Patterns and Microservices
PPTX
Domain Driven Design
PDF
Agile Methodology
PDF
50.000 orange stickies later
PDF
Mutation Testing
Domain Driven Design(DDD) Presentation
Domain Driven Design: Zero to Hero
Domain Driven Design
Domain Driven Design - Strategic Patterns and Microservices
Domain Driven Design
Agile Methodology
50.000 orange stickies later
Mutation Testing

What's hot (20)

PPTX
Domain Driven Design Introduction
PPTX
Domain Driven Design
PPTX
Introduction to DDD
PPTX
Domain Driven Design 101
PDF
Refactoring for Domain Driven Design
PPTX
Domain Driven Design
PDF
Domain Driven Design
PDF
Domain Driven Design
PPTX
Domain Driven Design
PPT
Domain Driven Design Demonstrated
PDF
Domain Driven Design (Ultra) Distilled
PDF
Domain Driven Design
PDF
Domain driven design and model driven development
PPTX
Domain-Driven Design
PPTX
Domain Driven Design Quickly
PDF
Domain Driven Design and Hexagonal Architecture
PDF
Design patterns for microservice architecture
PDF
Modelling a complex domain with Domain-Driven Design
PPTX
Domain driven design
PPTX
Introduction to microservices
Domain Driven Design Introduction
Domain Driven Design
Introduction to DDD
Domain Driven Design 101
Refactoring for Domain Driven Design
Domain Driven Design
Domain Driven Design
Domain Driven Design
Domain Driven Design
Domain Driven Design Demonstrated
Domain Driven Design (Ultra) Distilled
Domain Driven Design
Domain driven design and model driven development
Domain-Driven Design
Domain Driven Design Quickly
Domain Driven Design and Hexagonal Architecture
Design patterns for microservice architecture
Modelling a complex domain with Domain-Driven Design
Domain driven design
Introduction to microservices
Ad

Viewers also liked (6)

PPTX
Brownfield Domain Driven Design
PDF
Domain Driven Design
PDF
Domain-driven design - eine Einführung
PDF
Domain-Driven Design
PDF
CQRS, der etwas andere Architekturansatz
PPTX
A Practical Guide to Domain Driven Design: Presentation Slides
Brownfield Domain Driven Design
Domain Driven Design
Domain-driven design - eine Einführung
Domain-Driven Design
CQRS, der etwas andere Architekturansatz
A Practical Guide to Domain Driven Design: Presentation Slides
Ad

Similar to Domain Driven Design (DDD) (20)

PPTX
Domain Driven Design
PPTX
Domain Driven Design Ruby Ways - JURNAL 05/10/2017
PDF
Introduction to Domain driven design
PDF
Domain Driven Design - Distillation - Chapter 15
PDF
Domain Driven Design - Building Blocks
PPTX
DOMAIN DRIVER DESIGN
PPTX
Schibsted Spain - Day 1 - DDD Course
PPTX
Domain Driven Design
PDF
Idiomatic Domain Driven Design: implementing CQRS
PPTX
Domain Driven Design
PDF
Domain Driven Design Big Picture Strategic Patterns
PPTX
Introduction
PPTX
DDD eXchange
PPTX
how_does_ddd_work
PDF
A Case for Outside-In Design
PDF
Domain-Driven Design (Artur Trosin Product Stream)
PPTX
Software Design
PPT
Unit IV Software Engineering
PDF
Introduction to Domain-Driven Design
PPTX
Java TechTalk "Spring boot made life easier with Kubernetes and Microservices"
Domain Driven Design
Domain Driven Design Ruby Ways - JURNAL 05/10/2017
Introduction to Domain driven design
Domain Driven Design - Distillation - Chapter 15
Domain Driven Design - Building Blocks
DOMAIN DRIVER DESIGN
Schibsted Spain - Day 1 - DDD Course
Domain Driven Design
Idiomatic Domain Driven Design: implementing CQRS
Domain Driven Design
Domain Driven Design Big Picture Strategic Patterns
Introduction
DDD eXchange
how_does_ddd_work
A Case for Outside-In Design
Domain-Driven Design (Artur Trosin Product Stream)
Software Design
Unit IV Software Engineering
Introduction to Domain-Driven Design
Java TechTalk "Spring boot made life easier with Kubernetes and Microservices"

Recently uploaded (20)

PPTX
string python Python Strings: Literals, Slicing, Methods, Formatting, and Pra...
PPTX
Cybersecurity-and-Fraud-Protecting-Your-Digital-Life.pptx
PDF
Guide to Food Delivery App Development.pdf
PDF
CapCut PRO for PC Crack New Download (Fully Activated 2025)
PDF
PDF-XChange Editor Plus 10.7.0.398.0 Crack Free Download Latest 2025
PDF
Multiverse AI Review 2025: Access All TOP AI Model-Versions!
PDF
Microsoft Office 365 Crack Download Free
PDF
Introduction to Ragic - #1 No Code Tool For Digitalizing Your Business Proces...
PDF
infoteam HELLAS company profile 2025 presentation
PPTX
Download Adobe Photoshop Crack 2025 Free
PDF
E-Commerce Website Development Companyin india
PPTX
ROI Analysis for Newspaper Industry with Odoo ERP
PDF
Practical Indispensable Project Management Tips for Delivering Successful Exp...
PPT
3.Software Design for software engineering
PPTX
Airline CRS | Airline CRS Systems | CRS System
PPTX
hospital managemt ,san.dckldnklcdnkdnkdnjadnjdjn
PPTX
Human-Computer Interaction for Lecture 2
PPTX
Viber For Windows 25.7.1 Crack + Serial Keygen
PPTX
Presentation by Samna Perveen And Subhan Afzal.pptx
PDF
Sun and Bloombase Spitfire StoreSafe End-to-end Storage Security Solution
string python Python Strings: Literals, Slicing, Methods, Formatting, and Pra...
Cybersecurity-and-Fraud-Protecting-Your-Digital-Life.pptx
Guide to Food Delivery App Development.pdf
CapCut PRO for PC Crack New Download (Fully Activated 2025)
PDF-XChange Editor Plus 10.7.0.398.0 Crack Free Download Latest 2025
Multiverse AI Review 2025: Access All TOP AI Model-Versions!
Microsoft Office 365 Crack Download Free
Introduction to Ragic - #1 No Code Tool For Digitalizing Your Business Proces...
infoteam HELLAS company profile 2025 presentation
Download Adobe Photoshop Crack 2025 Free
E-Commerce Website Development Companyin india
ROI Analysis for Newspaper Industry with Odoo ERP
Practical Indispensable Project Management Tips for Delivering Successful Exp...
3.Software Design for software engineering
Airline CRS | Airline CRS Systems | CRS System
hospital managemt ,san.dckldnklcdnkdnkdnjadnjdjn
Human-Computer Interaction for Lecture 2
Viber For Windows 25.7.1 Crack + Serial Keygen
Presentation by Samna Perveen And Subhan Afzal.pptx
Sun and Bloombase Spitfire StoreSafe End-to-end Storage Security Solution

Domain Driven Design (DDD)

  • 1. Domain Driven Design Tom Kocjan I3Logix Inc.
  • 2. What is DDD? • It is a way of thinking and a set of priorities, aimed at accelerating software projects that have to deal with complicated domains. • A Model driven software design approach used to tackle the complexity of software projects. • Collection of principles and patterns that help developers craft elegant systems.
  • 3. Domain A sphere of knowledge or activity. What an organization does and the world it does it in. Model A system of abstractions that describes selected aspects of a domain and ignores extraneous detail. Explains a complex domain in a simple way. A model is a distilled form of domain knowledge, assumptions, rules and choices. Definitions
  • 6. DDD is a Set of Driving Principles • Speak a Ubiquitous Language within an explicitly Bounded Context. • Explore models in a creative collaboration of domain practitioners and software practitioners. • Focus on the Core Domain. • Model and implementation are bound... developers are also responsible for the model.
  • 7. Ubiquitous Language A language structured around the domain model and used by all team members to connect all the activities of the team with the software. Use it consistently in speech, documentation, diagrams and code. A Change in Ubiquitous Language <=> Change in Model and Code. Ubiquitous Language
  • 8. The model we want… • Helps us solve specific problems in our domain. • Is not necessarily “realistic”. • Forms the basis of a language. • Should remain current.
  • 10. Expressing the Model • The model can be expressed through class diagrams, explanatory diagrams, sequence diagrams or whatever conveys the model. • But, the design document is not the model! The design document's purpose is to help communicate and explain the model. • The model is ultimately expressed in the code.
  • 11. DDD is Agile and Iterative The problem with Big Design Up Front: • Models are distilled knowledge. • At the beginning of a project, the team is as ignorant as it will ever be. • Up Front Analysis Locks in Ignorance!
  • 12. Big Design Up FrontBig Design Up Front
  • 13. The DDD ProcessThe DDD Process
  • 15. One Team, One Language, One ModelOne Team, One Language, One Model
  • 16. A Complex DomainA Complex DomainA Complex DomainA Complex Domain
  • 17. Bounded Context An operational definition of where a particular model is well-defined and applicable. (Typically a subsystem, or the work owned by a particular team). Subdomain Part of the domain, based on a particular conceptual decomposition of the domain. Breaking Down a Complex Domain
  • 23. User Interface Responsible for presenting information to the user and interpreting user commands. Application This is a thin layer which coordinates the application activity. It does not contain business logic. It does not hold the state of the business objects. Domain This layer contains information about the domain. This is the heart of the business software. The state of business objects is held here. Persistence details delegated to the Infrastructure layer. Infrastructure This layer acts as a supporting library for all the other Layers. It provides communication between layers, implements persistence for business objects, contains supporting libraries for the user interface layer, etc. Layers
  • 24. Model Expressed in Software • Entities • Value Objects • Aggregates • Services • Associations • Factories • Repositories • Modules • Context Mapping
  • 25. Entities • Objects which have an identity which remains the same throughout the states of the software. • Must be distinguished from other similar objects having the same attributes. (e.g. Bank Account for Jim Smith) • Attributes of an entity can change. (Mutable) • Entities should have behavior. (Business Logic) • No persistence behavior!
  • 26. Value Objects • Value Objects are the “things” within your model that have no uniqueness. • They are only equal to another Value Object if all their attributes match. • Value Objects are interchangeable. • Attributes of a Value Object cannot change, they must be replaced. (Immutable) • Examples: Money, Address (usually), DTO
  • 27. Aggregates • An Aggregate is a cluster of Entities and Value objects. (Object Graph) Each aggregate is treated as one single unit. • Each Aggregate has one root entity know as the Aggregate Root. • The root identity is global, the identities of entities inside are local. • External objects may have references only to root. • Internal objects cannot be changed outside the Aggregate.
  • 29. Associations • Impose a traversal direction. • Add a qualifier, reduce multiplicity. • Eliminate non essential associations.
  • 30. Application “if the banking application can convert and export our transactions into a spreadsheet file... that export is an APPLICATION SERVICE” Domain “If a service were devised to make appropriate debits and credits for a found transfer, that capability would be a DOMAIN SERVICE” Infrastructure “a bank might have an application that sends an e-mail. The interface that encapsulates the email system is an INFRASTRUCTURE SERVICE” Services Reside in Multiple Layers
  • 31. Domain Services • A Domain Service is Business Logic in the domain that are not a natural part of an Entity or Value Object. • Services usually manipulate multiple Entities and Value Objects. • Services are stateless! • A service has to be offered as an interface that is defined as a part of the model. Its parameters and results should be domain objects.
  • 32. Factories • An object whose responsibility is the creation of other objects. • Create and manage complex domain objects. • Especially useful for creating aggregates.
  • 33. Repositories • A Repository encapsulates domain objects persistence and retrieval. • Clean separation and one-way dependency between the domain and data mapping layers. • May encapsulate different fetching strategies, distributed caching, NoSQL, Web Service, etc. • Acts as a collection except with more elaborate querying capability. • One Repository per Aggregate!
  • 34. Modules • Break up your domain to reduce complexity • High cohesion within module, loose coupling between modules. • Becomes part of the ubiquitous language • Helps with decoupling • Aids in extensibility
  • 35. Context Mapping • Mapping the contact points and translations between bounded contexts.
  • 36. Patterns for Context Mapping • Shared Kernel • Customer/Supplier • Conformist • Anti-corruption Layer • Separate Ways
  • 38. These are not the same: • Subdomain – Decomposition of the domain. • Module – Decomposition of the model and associated software. • Aggregate – Decomposition of the run-time data. • Service – Decomposition of functionality. • Bounded Context – Linguistic boundary marking the applicability of distinct models.
  • 39. Command Query Responsibility Segregation (CQRS)
  • 40. The data that a client needs from the model is screen based and different than the domain model.

Editor's Notes

  • #12: That is a pretty dense statement. Over the next few hours, we’ll try to define enough terms and explain enough of what we concretely do in order to unpack this statement.
  • #21: Pegue o modelo de domínio de uma aplicação de e-commerce. Há muitos componentes diferentes que formam o grande sistema global. Algumas peças podem ser encontrados em qualquer sistema de e-commerce, mas alguns vão ser exclusivo para sua empresa. Estas peças irão definir o software e serão as razões fundamentais que você está construindo em vez de comprar.