サービスの2つのコンポーネントでSpringに少し問題があります。
私はこのコンポーネントを持っています:
@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]
なぜクラス名を使用しないのですか?