SlideShare a Scribd company logo
1 of 33
Domain Driven Design Quickly
Domain Driven Design
• collection of principles and patterns that help
developers craft elegant object systems
• creates software abstractions called domain models
• models encapsulate complex business logic, closing the
gap between business reality and code
DDD Main Concepts
➔ Ubiquitous Language
➔ Model-Driven Design
◆ Layered Architecture
◆ Entities
◆ Value Objects
◆ Services
◆ Modules
◆ Aggregates
◆ Repositories
➔ Bounded Context
Ubiquitous Language
Ubiquitous Language
• is constructed during intensive communication between
domain experts and developers
• consists of mainly words which are understandable both
by domain experts and developers
• code should be written using the terms of this language
Ubiquitous Language
Roughly said:
• nouns become entities and value objects
• verbs become the methods
Layered Architecture
Layered Architecture
Model-Driven Design
Entities
Entities
An object, that can be identified uniquely, by
its identifier, which in code can be either ID,
or combination of some attributes.
Example:
• bank account number can be identified by its account number uniquely
• airport has an international identifier used in travel agencies all over the world
• ...
Value Objects
Value Objects
are descriptors or properties important in the
domain you are modeling
➔ do not have an identity
➔ they describe the things that do have identities
➔ should be immutable
➔ if you want a different value for the object, you simply
create another one
Value Objects
Example:
Customer -> customerID, name, street, city, state
can be represented as
Customer -> customerID, name, address (as an entity)
Address -> street, city, state (as a value object)
Difference between Entity & Value Object
1. Entity has an identity
2. Value objects mainly have no setters, they are
immutable
Example 1:
Person - is an entity
Address - is a value object, because 2 persons can have the same address
Difference between Entity & Value Object
Example 2 - dollar:
a) In context of everyday life 10$ is a value object, because for you it doesn’t
matter if it’s this 10$ or the other 10$.
b) In context of Government each individual $ makes difference, because
each $ paper money has its own serialization number -> so in this context
it’s an entity.
How to determine if the object is an Entity
OR Value Object ?
Ask the question:
Does it really matter which one?
If yes, then it’s an entity.
Services
Services
Some verbs of Ubiquitous Language do not
belong to any object, but they represent an
important behavior of the domain.
➔such behavior is declared as a service
➔its purpose is to provide functionality for the
domain
Modules
Modules
➔ Used as a method of organizing related concepts and tasks in order to reduce complexity. In
enterprise application big model can be separated into modules.
➔ Modules should be made up of elements which functionally or logically belong together assuring
cohesion.
➔ Modules should have well defined interfaces which are accessed by other modules. Instead of
calling three objects of a module, it is better to access one interface, because it reduces
coupling.
➔ Module names should be part of Ubiquitous Language.
➔ In Java they are simply packages.
Aggregates / Aggregate Root
Aggregates
A group of associated objects which are considered as one unit with regard to
data changes. It’s an entity which can contain other entities or value objects.
➔ has one Aggregate Root
➔ from outside only this root should be referenced/accessed
➔ only the root should be obtainable from DB through queries
Aggregates - Example
dsfsdf
Repositories
Repositories
A set of methods used to retrieve objects.
The client calls method and passes one or more parameters which represent the selection criteria
used to select an object or a set of matching objects.
Bounded Context
Bounded Context
➔ an area of responsibility
➔ a logical frame inside of which the model evolves
➔ it owns its own Ubiquitous Language
• Use the context as the basis for team organization.
• The context of a model is the set of conditions which need to be applied to make sure that the terms used in the
model have a specific meaning.
• Define the scope of a model, draw up the boundaries of its context.
• Explicitly set boundaries in terms of team organization, usage within specific parts of the application, and
physical manifestations such as code bases and database schemas.
• Communicate via interfaces between different bounded context.
Context Map
Context Map
➔ a document which outlines the different Bounded Contexts and the
relationships between them
➔ it can be a diagram like the one below, or it can be any written document.
Context Map
There are series of patterns which can be used to create Context Maps
where contexts have clear roles and their relationships are pointed out
➔ Shared Kernel
➔ Customer-Supplier
➔ Separate Ways
➔ Open Host Services
➔ Anticorruption Layers
Context Map - Shared Kernel
Shared domain model, which reduces duplication
Any change of the kernel should be communicated to another team, and the teams should be informed, making
them aware of the new functionality.
Q & A

More Related Content

What's hot

What's hot (20)

Domain-Driven Design
Domain-Driven DesignDomain-Driven Design
Domain-Driven Design
 
Domain Driven Design
Domain Driven DesignDomain Driven Design
Domain Driven Design
 
Domain Driven Design Introduction
Domain Driven Design IntroductionDomain Driven Design Introduction
Domain Driven Design Introduction
 
Introduction to DDD
Introduction to DDDIntroduction to DDD
Introduction to DDD
 
Introducing Domain Driven Design - codemash
Introducing Domain Driven Design - codemashIntroducing Domain Driven Design - codemash
Introducing Domain Driven Design - codemash
 
Domain Driven Design 101
Domain Driven Design 101Domain Driven Design 101
Domain Driven Design 101
 
Domain Driven Design(DDD) Presentation
Domain Driven Design(DDD) PresentationDomain Driven Design(DDD) Presentation
Domain Driven Design(DDD) Presentation
 
Domain Driven Design
Domain Driven DesignDomain Driven Design
Domain Driven Design
 
Introduction to Domain Driven Design
Introduction to Domain Driven DesignIntroduction to Domain Driven Design
Introduction to Domain Driven Design
 
Domain Driven Design
Domain Driven Design Domain Driven Design
Domain Driven Design
 
Domain Driven Design
Domain Driven DesignDomain Driven Design
Domain Driven Design
 
Grokking Techtalk: Problem solving for sw engineers
Grokking Techtalk: Problem solving for sw engineersGrokking Techtalk: Problem solving for sw engineers
Grokking Techtalk: Problem solving for sw engineers
 
Domain Driven Design
Domain Driven DesignDomain Driven Design
Domain Driven Design
 
Domain Driven Design
Domain Driven DesignDomain Driven Design
Domain Driven Design
 
Applying Domain-Driven Design to craft Rich Domain Models
Applying Domain-Driven Design to craft Rich Domain ModelsApplying Domain-Driven Design to craft Rich Domain Models
Applying Domain-Driven Design to craft Rich Domain Models
 
Domain Driven Design: Zero to Hero
Domain Driven Design: Zero to HeroDomain Driven Design: Zero to Hero
Domain Driven Design: Zero to Hero
 
Modelling a complex domain with Domain-Driven Design
Modelling a complex domain with Domain-Driven DesignModelling a complex domain with Domain-Driven Design
Modelling a complex domain with Domain-Driven Design
 
A Practical Guide to Domain Driven Design: Presentation Slides
A Practical Guide to Domain Driven Design: Presentation SlidesA Practical Guide to Domain Driven Design: Presentation Slides
A Practical Guide to Domain Driven Design: Presentation Slides
 
Clean architecture
Clean architectureClean architecture
Clean architecture
 
Real Life Clean Architecture
Real Life Clean ArchitectureReal Life Clean Architecture
Real Life Clean Architecture
 

Viewers also liked

Why Domain-Driven Design and Reactive Programming?
Why Domain-Driven Design and Reactive Programming?Why Domain-Driven Design and Reactive Programming?
Why Domain-Driven Design and Reactive Programming?
VMware Tanzu
 
Domain Driven Design in the Browser - Cameron Edwards
Domain Driven Design in the Browser - Cameron EdwardsDomain Driven Design in the Browser - Cameron Edwards
Domain Driven Design in the Browser - Cameron Edwards
Hakka Labs
 
Principles of microservices velocity
Principles of microservices   velocityPrinciples of microservices   velocity
Principles of microservices velocity
Sam Newman
 

Viewers also liked (17)

Implementing DDD Concepts in PHP
Implementing DDD Concepts in PHPImplementing DDD Concepts in PHP
Implementing DDD Concepts in PHP
 
도메인 주도 설계의 본질
도메인 주도 설계의 본질도메인 주도 설계의 본질
도메인 주도 설계의 본질
 
DDD 구현기초 (거의 Final 버전)
DDD 구현기초 (거의 Final 버전)DDD 구현기초 (거의 Final 버전)
DDD 구현기초 (거의 Final 버전)
 
Beyond design patterns and principles - writing good OO code
Beyond design patterns and principles - writing good OO codeBeyond design patterns and principles - writing good OO code
Beyond design patterns and principles - writing good OO code
 
Solid principles, Design Patterns, and Domain Driven Design
Solid principles, Design Patterns, and Domain Driven DesignSolid principles, Design Patterns, and Domain Driven Design
Solid principles, Design Patterns, and Domain Driven Design
 
Architecting iOS Project
Architecting iOS ProjectArchitecting iOS Project
Architecting iOS Project
 
Domain-Driven Design (Artur Trosin Product Stream)
Domain-Driven Design (Artur Trosin Product Stream)Domain-Driven Design (Artur Trosin Product Stream)
Domain-Driven Design (Artur Trosin Product Stream)
 
Why Domain-Driven Design and Reactive Programming?
Why Domain-Driven Design and Reactive Programming?Why Domain-Driven Design and Reactive Programming?
Why Domain-Driven Design and Reactive Programming?
 
DDD patterns that were not in the book
DDD patterns that were not in the bookDDD patterns that were not in the book
DDD patterns that were not in the book
 
Domain-Driven Design with ASP.NET MVC
Domain-Driven Design with ASP.NET MVCDomain-Driven Design with ASP.NET MVC
Domain-Driven Design with ASP.NET MVC
 
Go-jek's Go-Food Chatbot
Go-jek's Go-Food ChatbotGo-jek's Go-Food Chatbot
Go-jek's Go-Food Chatbot
 
Architecture Principles CodeStock
Architecture Principles CodeStock Architecture Principles CodeStock
Architecture Principles CodeStock
 
2011 iska - tim m - domain driven design
2011   iska - tim m - domain driven design2011   iska - tim m - domain driven design
2011 iska - tim m - domain driven design
 
Automation of functional tests using JMeter Part II (in Polish)
Automation of functional tests using JMeter Part II (in Polish)Automation of functional tests using JMeter Part II (in Polish)
Automation of functional tests using JMeter Part II (in Polish)
 
Domain Driven Design in the Browser - Cameron Edwards
Domain Driven Design in the Browser - Cameron EdwardsDomain Driven Design in the Browser - Cameron Edwards
Domain Driven Design in the Browser - Cameron Edwards
 
Domain-driven design - tactical patterns
Domain-driven design - tactical patternsDomain-driven design - tactical patterns
Domain-driven design - tactical patterns
 
Principles of microservices velocity
Principles of microservices   velocityPrinciples of microservices   velocity
Principles of microservices velocity
 

Similar to Domain Driven Design Quickly

Cs 1023 lec 8 design pattern (week 2)
Cs 1023 lec 8 design pattern (week 2)Cs 1023 lec 8 design pattern (week 2)
Cs 1023 lec 8 design pattern (week 2)
stanbridge
 

Similar to Domain Driven Design Quickly (20)

Domain Driven Design
Domain Driven DesignDomain Driven Design
Domain Driven Design
 
Domain-Driven Design
Domain-Driven DesignDomain-Driven Design
Domain-Driven Design
 
Java TechTalk "Spring boot made life easier with Kubernetes and Microservices"
Java TechTalk "Spring boot made life easier with Kubernetes and Microservices"Java TechTalk "Spring boot made life easier with Kubernetes and Microservices"
Java TechTalk "Spring boot made life easier with Kubernetes and Microservices"
 
Expressing Concept Schemes & Competency Frameworks in CTDL
Expressing Concept Schemes & Competency Frameworks in CTDLExpressing Concept Schemes & Competency Frameworks in CTDL
Expressing Concept Schemes & Competency Frameworks in CTDL
 
DDD eXchange
DDD eXchangeDDD eXchange
DDD eXchange
 
Cs 1023 lec 8 design pattern (week 2)
Cs 1023 lec 8 design pattern (week 2)Cs 1023 lec 8 design pattern (week 2)
Cs 1023 lec 8 design pattern (week 2)
 
Introduction to Domain driven design
Introduction to Domain driven designIntroduction to Domain driven design
Introduction to Domain driven design
 
Domain driven design
Domain driven designDomain driven design
Domain driven design
 
Design Pattern Notes: Nagpur University
Design Pattern Notes: Nagpur UniversityDesign Pattern Notes: Nagpur University
Design Pattern Notes: Nagpur University
 
D2 domain driven-design
D2 domain driven-designD2 domain driven-design
D2 domain driven-design
 
Chapter 4_Introduction to Patterns.ppt
Chapter 4_Introduction to Patterns.pptChapter 4_Introduction to Patterns.ppt
Chapter 4_Introduction to Patterns.ppt
 
Chapter 4_Introduction to Patterns.ppt
Chapter 4_Introduction to Patterns.pptChapter 4_Introduction to Patterns.ppt
Chapter 4_Introduction to Patterns.ppt
 
SOFTWARE ENGINEERING AND SOFTWARE PROJECT MANAGEMENT
SOFTWARE ENGINEERING AND SOFTWARE PROJECT MANAGEMENTSOFTWARE ENGINEERING AND SOFTWARE PROJECT MANAGEMENT
SOFTWARE ENGINEERING AND SOFTWARE PROJECT MANAGEMENT
 
Design patterns Structural
Design patterns StructuralDesign patterns Structural
Design patterns Structural
 
UNIT IV DESIGN PATTERNS.pptx
UNIT IV DESIGN PATTERNS.pptxUNIT IV DESIGN PATTERNS.pptx
UNIT IV DESIGN PATTERNS.pptx
 
DDD
DDDDDD
DDD
 
Oop.pptx
Oop.pptxOop.pptx
Oop.pptx
 
Beyond MVC: from Model to Domain
Beyond MVC: from Model to DomainBeyond MVC: from Model to Domain
Beyond MVC: from Model to Domain
 
Domain-Driven Design
Domain-Driven DesignDomain-Driven Design
Domain-Driven Design
 
C++ programing lanuage
C++ programing lanuageC++ programing lanuage
C++ programing lanuage
 

Recently uploaded

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Recently uploaded (20)

Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 

Domain Driven Design Quickly

  • 2. Domain Driven Design • collection of principles and patterns that help developers craft elegant object systems • creates software abstractions called domain models • models encapsulate complex business logic, closing the gap between business reality and code
  • 3. DDD Main Concepts ➔ Ubiquitous Language ➔ Model-Driven Design ◆ Layered Architecture ◆ Entities ◆ Value Objects ◆ Services ◆ Modules ◆ Aggregates ◆ Repositories ➔ Bounded Context
  • 5. Ubiquitous Language • is constructed during intensive communication between domain experts and developers • consists of mainly words which are understandable both by domain experts and developers • code should be written using the terms of this language
  • 6. Ubiquitous Language Roughly said: • nouns become entities and value objects • verbs become the methods
  • 11. Entities An object, that can be identified uniquely, by its identifier, which in code can be either ID, or combination of some attributes. Example: • bank account number can be identified by its account number uniquely • airport has an international identifier used in travel agencies all over the world • ...
  • 13. Value Objects are descriptors or properties important in the domain you are modeling ➔ do not have an identity ➔ they describe the things that do have identities ➔ should be immutable ➔ if you want a different value for the object, you simply create another one
  • 14. Value Objects Example: Customer -> customerID, name, street, city, state can be represented as Customer -> customerID, name, address (as an entity) Address -> street, city, state (as a value object)
  • 15. Difference between Entity & Value Object 1. Entity has an identity 2. Value objects mainly have no setters, they are immutable Example 1: Person - is an entity Address - is a value object, because 2 persons can have the same address
  • 16. Difference between Entity & Value Object Example 2 - dollar: a) In context of everyday life 10$ is a value object, because for you it doesn’t matter if it’s this 10$ or the other 10$. b) In context of Government each individual $ makes difference, because each $ paper money has its own serialization number -> so in this context it’s an entity.
  • 17. How to determine if the object is an Entity OR Value Object ? Ask the question: Does it really matter which one? If yes, then it’s an entity.
  • 19. Services Some verbs of Ubiquitous Language do not belong to any object, but they represent an important behavior of the domain. ➔such behavior is declared as a service ➔its purpose is to provide functionality for the domain
  • 21. Modules ➔ Used as a method of organizing related concepts and tasks in order to reduce complexity. In enterprise application big model can be separated into modules. ➔ Modules should be made up of elements which functionally or logically belong together assuring cohesion. ➔ Modules should have well defined interfaces which are accessed by other modules. Instead of calling three objects of a module, it is better to access one interface, because it reduces coupling. ➔ Module names should be part of Ubiquitous Language. ➔ In Java they are simply packages.
  • 23. Aggregates A group of associated objects which are considered as one unit with regard to data changes. It’s an entity which can contain other entities or value objects. ➔ has one Aggregate Root ➔ from outside only this root should be referenced/accessed ➔ only the root should be obtainable from DB through queries
  • 26. Repositories A set of methods used to retrieve objects. The client calls method and passes one or more parameters which represent the selection criteria used to select an object or a set of matching objects.
  • 28. Bounded Context ➔ an area of responsibility ➔ a logical frame inside of which the model evolves ➔ it owns its own Ubiquitous Language • Use the context as the basis for team organization. • The context of a model is the set of conditions which need to be applied to make sure that the terms used in the model have a specific meaning. • Define the scope of a model, draw up the boundaries of its context. • Explicitly set boundaries in terms of team organization, usage within specific parts of the application, and physical manifestations such as code bases and database schemas. • Communicate via interfaces between different bounded context.
  • 30. Context Map ➔ a document which outlines the different Bounded Contexts and the relationships between them ➔ it can be a diagram like the one below, or it can be any written document.
  • 31. Context Map There are series of patterns which can be used to create Context Maps where contexts have clear roles and their relationships are pointed out ➔ Shared Kernel ➔ Customer-Supplier ➔ Separate Ways ➔ Open Host Services ➔ Anticorruption Layers
  • 32. Context Map - Shared Kernel Shared domain model, which reduces duplication Any change of the kernel should be communicated to another team, and the teams should be informed, making them aware of the new functionality.
  • 33. Q & A