What is Dependency Injection and Inversion of Control in Spring Framework?

前端 未结 11 2442
你的背包
你的背包 2020-12-02 03:51

\"Dependency Injection\" and \"Inversion of Control\" are often mentioned as the primary advantages of using the Spring framework for developing Web frameworks

Could

11条回答
  •  半阙折子戏
    2020-12-02 04:26

    IOC is technique where you let someone else to create the object for you. And the someone else in case of spring is IOC container.

    Dependency Injection is a technique where one object supplies the dependency of another object.

提交回复
热议问题