컨테이너에 등록된 모든 빈 조회스프링 컨테이너에 실제 스프링 빈들이 잘 등록되었는지 확인해 보자package hello.core.beanfind;import hello.core.AppConfig;import org.junit.jupiter.api.DisplayName;import org.junit.jupiter.api.Test;import org.springframework.beans.factory.config.BeanDefinition;import org.springframework.context.annotation.AnnotationConfigApplicationContext;public class ApplicationContextInfoTest { AnnotationConfigApplicati..