의존성 주입1 Dependency Injection 이란 01.Object Dependencies(객체 의존성) 현재 객체가 다른 객체와 상호작용을 하고 있다면 객체는 다른 객체에 의존성을 가진다. public class PetOwner{ private AnimalType animal; public PetOwner() { this.animal = new Dog(); } } https://gmlwjd9405.github.io/2018/11/09/dependency-injection.html PetOwner 객체는 AnimalTpte 객체(Dog)에 의존한다. 02.Dependency Injection 객체가 자체가 아니라 Framework 에 의해 객체의 의존성이 주입되는 설계 패턴 Framework 에 의해 동적으로 주입되므로 여러 객체간의 결합이 줄어든다. .. 2022. 1. 3. 이전 1 다음