สมมติว่าฉันมีอินเทอร์เฟซเช่นนี้:
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