I am exploring dependency injection and the term composition root is used all over the place. So what is it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The composition root is the single place in your application where the composition of the object graphs for your application take place, using the dependency injection container (although how this is done is irrelevant, it could be using a container or could be done manually using poor man's DI). There should only be one place where this happens and your container should not need to be used outside of the composition root. Quoting from one of the answers linked to below:
There is a good answer here which explains a bit more about this. See also this answer. |
||||
|
|