...

/

The Role of Dependency Injection

The Role of Dependency Injection

Learn how dependency injection can play a role in developing clean software architecture.

We'll cover the following...

The package structure described previously goes a long way towards a Clean Architecture, but an essential requirement of such an architecture is that the application layer does not have dependencies to the incoming and outgoing adapters, as we have learned in the chapter “Inverting Dependencies”.

For incoming adapters like our web adapter, this is easy because the control flow ...