依赖注入 – 什么是依赖注入上下文中的组合根

前端之家收集整理的这篇文章主要介绍了依赖注入 – 什么是依赖注入上下文中的组合根前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在探索依赖注入,术语组合根在所有地方使用。那么是什么呢?
组合根是应用程序中应用程序的对象图形的组合的单个位置,使用依赖注入容器(虽然如何做是无关的,它可以使用容器或可以使用 pure DI手动完成)。

应该只有一个地方发生这种情况,您的容器不应该需要在组合根之外使用。

引用从以下链接的答案之一:

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

原文链接:https://www.f2er.com/javaschema/282789.html

猜你在找的设计模式相关文章