ApplicationContext
를 Spring Container라고 한다.ApplicationContext
는 Interface이다.AppConfig
를 사용해서 직접 객체 생성 및 DIApplicationContext applicationContext = new AnnotationConfigApplicationContext(AppConfig.class); // MemberService memberService = applicationCotnext.getBean("memberService", MemberService.class);
AppCongfig.class
로 지정해 주었다.
BeanFactory
getBean()
제공ApplicationContext
Reference
인프런 - 김영한님의 [스프링 핵심 원리 - 기본편] 수강 후 강의노트를 바탕으로 작성한 글입니다.
https://www.inflearn.com/course/%EC%8A%A4%ED%94%84%EB%A7%81-%ED%95%B5%EC%8B%AC-%EC%9B%90%EB%A6%AC-%EA%B8%B0%EB%B3%B8%ED%8E%B8/dashboard