Spring DI - auto-wiring, annotation 기반Auto-wiringDI 명시적 설정 안해도 bean의 Type이나 Name 이용하여 container가 DI를 자동 수행autowire 속성 이용하여 지정 byNamesetter injectionproperty와 같은 name(id) 선택하여 주입 위의 코드를 autowire 속성 이용하여 자동 주입 byTypesetter injectionproperty와 같은 type 갖는 bean을 찾아 주입.byType은 의존객체가 하나만 존재할 때 사용이 가능 위의 코드를 autowire 속성 이용하여 자동 주입, 여기서 Saxophone은 유일한 객체 constructorconstructor injectionbyType처럼 type으로 선택하..