Relative Content

Tag Archive for boundaries

How to model two bounded contexts with tight coupling between them

Context Hello, at my company we have been working with DDD for some time now. We have a monolith and some services. The bounded contexts in the monolith use HTTP calls to communicate between them or data replication/projections when it’s needed. Now we have a case where we think we have two bounded contexts, but […]

How handle foreign keys in bounded contexts inside a monolith?

in my company we have a Django monolithic application. To be clear, we are not looking into moving to micro-services. For the past few months, I have reading and implementing a DDD architecture inside the monolith, trying to setup the django modules as isolated as possible from the rest of the application. I have somehow successfully done this, except for the testing part.