我正在探索依赖注入,术语组合根在所有地方使用。那么是什么呢?
组合根是应用程序中应用程序的对象图形的组合的单个位置,使用依赖注入容器(虽然如何做是无关的,它可以使用容器或可以使用
pure DI手动完成)。
原文链接:https://www.f2er.com/javaschema/282789.html应该只有一个地方发生这种情况,您的容器不应该需要在组合根之外使用。
引用从以下链接的答案之一:
In practice,this means that you
should configure the container at the
root of your application.
- In a desktop app,that would be in the Main method (or very close to it)
- In an ASP.NET (including MVC) application,that would be in
Global.asax- In WCF,that would be in a ServiceHostFactory
- etc.
有一个很好的答复here这解释了一点更多。
参见this answer。