Part I. Building an Architecture to Support Domain Modelling

Most developers have never seen a domain model, only a data model.

Cyrille Martraire, DDD EU 2017

Most developers that we talk to about architecture have a nagging sense that things could be better. They’re often trying to rescue a system that has gone wrong somehow, and trying to put some structure back into a ball of mud. They know that their business logic shouldn’t be spread all over the place, but they’ve no idea how to fix it.

We’ve found that many developers, when asked to design a new system, will immediately start to build a database schema, with the object model treated as an afterthought. This is where it all starts to go wrong. Instead, behavior should come first, and drive our storage requirements.

After all, our customers don’t care about the data model. They care about what the system does, otherwise they’d just use a spreadsheet.

The first part of the book looks at how to build a rich object model through TDD (in Chapter 1), and then we’ll see how to keep that model decoupled from technical concerns. We see how to build persistence-agnostic code and how to create stable APIs around our domain so that we can refactor aggressively.

To do that, we look at four key design patterns:

If you’d like a picture of where we’re going, take a look at Figure I-1, but don’t worry if none of it makes any sense yet! We introduce each box in the figure, one by one.

apwp p101
Figure I-1. A component diagram for our app at the end of Part I

We also take a little time out to talk about coupling and abstractions, illustrating the discussion with a simple example that shows how and why we choose our abstractions.

Several of the appendices are further explorations of the content from Part I:

  • Appendix B is a write-up of the infrastructure for our example code: how we build and run the docker images, where we manage configuration info, how we run different types of tests.

  • Appendix C is a “the proof is in the pudding” kind of chapter, showing how easy it is to swap out our entire infrastructure—the flask API, the ORM and postgres, for a totally different I/O model involving a CLI and CSVs.

  • Finally, Appendix D may be of interest if you’re wondering how these patterns might look if using Django, instead of Flask+SQLAlchemy.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.188.108.54