[Java / Spring] 스프링 빈 조회
·
Framework & Library/Spring
- 스프링 컨테이너와 스프링 빈 - 컨테이너에 등록된 모든 빈 조회 - 스프링 빈 조회 기본 - 스프링 빈 조회 동일한 타입이 둘 이상 - 스프링 빈 조회 상송관계 컨테이너에 등록된 모든 빈 조회 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 ..