다음과 같은 인터페이스가 있다고 가정합니다.
interface Country {}
class USA implements Country {}
class UK implements Country ()
그리고이 구성 xml 스 니펫 :
<bean class="USA"/>
<bean id="country" class="UK"/>
<bean id="main" class="Main"/>
아래에서 자동 연결되는 종속성을 어떻게 제어 할 수 있습니까? 영국을 원합니다.
class Main {
private Country country;
@Autowired
public void setCountry(Country country) {
this.country = country;
}
}
Spring 3.0.3.RELEASE를 사용하고 있습니다.