스프링 컨테이너에서 스프링 빈을 찾는 가장 기본적인 조회 방법 - ac.getBean(빈이름, 타입) - ac.getBean(타입) 조회 대상 스프링 빈이 없으면 예외 발생 - NoSuchBeanDefinitionException: No bean named 'xxxxx' available 예제 코드 (ApplicationContextBasicFindTest.java) package hello.core.beanfind; import hello.core.AppConfig; import hello.core.member.MemberService; import hello.core.member.MemberServiceImpl; import org.assertj.core.api.Assertions; import or..