[스프링 핵심 원리] 04. 스프링 컨테이너와 스프링 빈 - 스프링 빈 조회(동일한 타입이 둘 이상)
(인프런) 김영한님의 스프링 핵심 원리-기본편을 공부하고 리뷰한 글입니다. 4. 스프링 빈 조회(동일한 타입이 둘 이상) ac.get(타입)으로 조회할 때, 같은 타입의 스프링 빈이 둘 이상이면 NoUniqueBeanDefinitionException 예외가 발생한다. 이럴 경우, 1) ac.get(빈 이름, 타입) 으로 1개의 빈을 조회한다. 2) ac.getBeansOfType() 으로 해당 타입의 모든 빈을 조회한다. 1. ApplicationContextSameBeanFindTest 예제 코드 package hello.core.beanfind; import hello.core.member.MemberRepository; import hello.core.member.MemoryMemberReposi..