[Spring] Spring bean(빈) 조회 - 상속 관계
스프링 빈을 조회할 때, 부모 타입으로 조회 시, 자식 타입도 함께 조회된다. 그래서 모든 자바 객체의 최고 부모인 Object 타입으로 조회하면, 모든 스프링 빈을 조회한다. 상속 관계의 스프링 빈 조회에 대한 처리 방법을 테스트 코드로 작성해보자. ● 상속 관계 스프링 빈 조회 상속 관계의의 스프링 빈들을 조회하는 테스트 코드를 작성한다. ApplicationContextExtendsFindTest.java package hello.core.beanfind; import hello.core.discount.DiscountPolicy; import hello.core.discount.FixDiscountPolicy; import hello.core.discount.RateDiscountPolicy; i..