컨테이너에 등록된 모든 빈 조회
ApplicationContext applicationContext
= new AnnotationConfigApplicationContext(AppConfig.class);
MemberService memberService
= applicationContext.getBean("memberService",MemberService.class);//(이름,타입)Last updated
ApplicationContext applicationContext
= new AnnotationConfigApplicationContext(AppConfig.class);
MemberService memberService
= applicationContext.getBean("memberService",MemberService.class);//(이름,타입)Last updated