Spring Dependency Injection – Spring的依赖性注入

最后修改: 2019年 1月 29日

中文/混合/英文(键盘快捷键:t)

Dependency Injection is a fundamental aspect of the Spring framework, through which the Spring container “injects” objects into other objects or “dependencies”.

依赖注入是Spring框架的一个基本方面,通过它,Spring容器将对象 “注入 “到其他对象或 “依赖 “中。

Simply put, this allows for loose coupling of components and moves the responsibility of managing components onto the container.

简单地说,这允许组件的松散耦合,并将管理组件的责任转移到容器上。

Let’s explore DI with Spring further here.

让我们在这里进一步探讨DI与Spring。