해결된 질문
작성
·
457
답변 1
1
안녕하세요, yousd179 님. 공식 서포터즈 y2gcoder 입니다.
DI 과정에서 의존성 주입을 해주는 것과 연관된 컴포넌트들은 각각 ApplicationContext 인터페이스와 BeanFactory 인터페이스 쪽을 보셔야 합니다. 특히 BeanFactory 인터페이스(의 구현체)는 빈의 생성, 설정, 관리와 같은 작업을 수행하는 스프링의 주요 DI 컨테이너 중 하나입니다. ApplicationContext에서도 BeanFactory의 구현체를 상속받아서 사용하고 있는 모습을 볼 수 있습니다. 좀 더 자세한 설명을 보고 싶으시다면 아래의 스프링 공식 문서를 참조해주세요!
ApplicationContext: https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#beans-introduction
BeanFactory: https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#beans-factory-overview
의존성 주입: https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#beans-dependencies
감사합니다.
항상 감사합니다 !!