Click here to Skip to main content
15,880,405 members
Articles / Domain
Tip/Trick

Are You Making These 10 Domain Driven Design Mistakes?

Rate me:
Please Sign up or sign in to vote.
5.00/5 (6 votes)
26 Feb 2016CPOL6 min read 16.7K   9   2
Are you making these 10 domain driven design mistakes?

Introduction

Making mistakes is part of programming. Spotting them early can save you time. I’ve started to notice a common set of ‘Domain-Drive Design Mistakes’ which many of us seem to make. And yes, I’ve made them all at some point in my career. This is by no means the definitive list – I’m sure there are more (scroll to the bottom for the infographice version).

1. Allowing Persistence and Databases to Influence your Models

This is a common 'mistake' when following a DDD approach. Many of the tactical patterns like, Aggregate Roots, exist to simplify your models. They achieve simplicity by isolating your solution from infrastructure concerns like databases. The real starting point of a DDD approach is always the domain experts. If you find yourself starting with a schema or data model, alarm bells should be ringing. Your final solution may end up using stored procs over a relational model. But a database should have no part of the early stages of modelling.

2. Not Immersing Yourself With Domain Experts

At the heart of Domain Modeling is the desire to bridge the communications gap. The better you understand the problem domain, the better your solution. Now when I say understand the problem I mean from the perspective of the domain expert. So if you are modeling a circuit board testing system, spend time with the electronics engineers. If it is an aircraft refueling coordination system, spend time with the re-fueling coordinators (or whatever they are called).

3. Ignoring the Language of the Domain Experts

A key concept in DDD is something called the Ubiquitous Language. The idea is simple. First understand the language of the experts. Then infuse the language of the domain experts into all your code and discussions. Right down to the method, class and variable names.

Health Warning: The Ubiquitous Language is only ubiquitous within a bounded context. For example, the word 'Client' may have a different meaning in the accounts BC to the warehouse BC.

4. Not Identifying Bounded Contexts

How do you solve a complex problem? A common approach is to break it down into smaller parts. Isolating and solving smaller problems make resolving the bigger ones more likely. This is one of the key benefits of a bounded context. Identifying them has a direct impact on the likelihood building a successful solution.

5. Maintaining Bounded Contexts Despite Deeper Domain Insights

When you have a found a context which seems to work, it's tempting to stick with it. But this rigidity can become a problem. The process of domain discovery evolves over time. Your code should evolve with those discoveries. To do this, your code needs to be supple. You need to cover your code in the right kind of tests. This gives you freedom to rework your code to reflect those discoveries. It allows you to take advantage of your growing understanding of the domain.

6. Using Anemic Domain Models

This is a common symptom of a modelling process gone wrong. It is also a sign you are not doing 'DDD'. But what is an anaemic domain model? It is domain classes full of public properties with getters and setters. They are classes with no behaviour of their own. These have become prevalent due to ORM's mapping database schema's to code. You may still have these kind of classes in your system but they are not your domain objects. Rather look to encapsulate objects and provide behavior.

7. Assuming All Logic is Domain Logic

Again this is a common error. The assumption is that all logic is domain logic. You can tie yourself in knots trying to shoehorn everything into your domain models. The most obvious example is field validation on forms. Most field validation logic should live close to the client code. In a web application, it would be in the JavaScript and endpoint controller. For example, validating an email, or a required first name field. The confusion arises because we attempt to keep all validation logic in one place. For example, we may check an age is in a particular range. This is field validation. Whereas ensuring a person is old enough to handle hazardous material, this is a domain concern. Other types of 'logic' may also not be best suited within a domain object. An example of this is when an aggregate exists solely to house a process which should involve many aggregates. A better approach could be to use a process manager. This would handle the process logic while the aggregate processes the implementation logic.

8. Over Using Interaction Tests

It is important to keep your code supple. This is particularly true at the early stages. But to allow for major re-factors, you need a safety net. This net is a good suite of tests. They should be a help to the development process rather than a trip hazard. I've noticed interaction tests have a tendency to hinder re-factors. This is because interaction testing expects certain methods to have been called. It ensures these methods are called with particular parameters, etc. Here's the problem. If we change how the work is done but not the end result, the tests will fail. A much more robust mechanism of testing is by checking final state. Given a certain scenario, when a specific input is received, a specific final state is expected. Key here is the test doesn't care how that state was arrived at. This frees you to monkey with the innards and be confident the system still behaves correctly.

9. Treating Security as Part of the Domain (Unless It Actually Is)

Security is an important part of a lot of the systems we build today. Rarely, however, is it part of the domain. The result of a calculation of risk doesn't change if calculated by a superuser or not. So while security is an important part of the system, it shouldn't play a part in the modeling of the domain. Unless it is actually part of the domain!

10. Focusing on Infrastructure

I've already mentioned the common mistake of focusing on the database at the start. Another mistake is to focus on infrastructure concerns at the modeling stage. An example of this could be taking a data feed from a device. You should define the shape of the data for your system. Then use adapters to ensure whatever service feeds you data, is transformed into the correct format.

If all that wasn't enough, here is a bonus one...

BONUS: 11. Skipping the EventStorming Process

EventStorming is often overlooked by developers. It involves a different kind of skillset. It can be hard to get the right people in the room. And there are no guarantees you will come up with something useful. The reason I've added it is because it is something well worth doing. If you want to speed up the design process. If you want the best chance of spotting those 'seems' in the domain as early as possible. If you want to get buy in. If you want involvement. Both crucial elements of a successful project. Then don't miss out the EventStorm.

Health Warning: It maybe DDD is not the right approach for the system you are building. In which case the advice above would not necessarily apply.

Are You Making These 10 DDD Mistakes? - An Infographic from Learn CQRS and Event Sourcing

Embedded from Learn CQRS and Event Sourcing

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
United Kingdom United Kingdom
I remember learning to code on a ZX spectrum - you know, the one with the little rubber keys. Man that makes me feel old! I blog about Domain Driven Design and CQRS, Event Sourcing in particular. So do take a look at my blog if you're interested in that area of development. You can find it here at: http://danielwhittaker.me

Comments and Discussions

 
GeneralMy vote of 5 Pin
Chris at M20-Mar-16 16:23
Chris at M20-Mar-16 16:23 
GeneralMy vote of 5 Pin
Duncan Edwards Jones26-Feb-16 4:12
professionalDuncan Edwards Jones26-Feb-16 4:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.