@Configuration과 싱글톤 @Configuration는 사실상 싱글톤을 위해 쓰여진다 그런데 싱글톤이 아닌것 같은 이상한점이 있다. 다음 AppConfig 코드를 보자. package hello.core; import hello.core.discount.DiscountPolicy; import hello.core.discount.FixDiscountPolicy; import hello.core.discount.RateDiscountPolicy; import hello.core.member.MemberRepository; import hello.core.member.MemberService; import hello.core.member.MemberServiceImpl; import hello.co..