我在Spring中有兩個組件服務有點麻煩。Spring沒有類型的唯一bean
我有這個組件:
@Component
public class SmartCardWrapper
這一個:
@Component
public class DummySmartCardWrapper extends SmartCardWrapper
服務自動裝配,但都失敗春季由於此厚望:爲什麼它不
org.springframework.beans.factory.NoSuchBeanDefinitionException: No unique bean of type [com.cinebot.smartcard.SmartCardWrapper] is defined: expected single matching bean but found 2: [dummySmartCardWrapper, smartCardWrapper]
使用類名?
嗨託比亞,似乎你應該使用註釋@Qualifier,檢查出的鏈接:http://static.springsource。 org/spring/docs/2.5.x/reference/beans.html#beans-annotation-config – Jaiwo99