Supponiamo che io abbia interfacce come queste:
interface Country {}
class USA implements Country {}
class UK implements Country ()
E questo frammento di configurazione xml:
<bean class="USA"/>
<bean id="country" class="UK"/>
<bean id="main" class="Main"/>
Come posso controllare quale dipendenza è autowired di seguito? Vorrei quello britannico.
class Main {
private Country country;
@Autowired
public void setCountry(Country country) {
this.country = country;
}
}
Sto usando Spring 3.0.3.RELEASE.