最佳答案
我有一个要求在 @Configuration
类中自动连接的 bean Item<T>
。
@Configuration
public class AppConfig {
@Bean
public Item<String> stringItem() {
return new StringItem();
}
@Bean
public Item<Integer> integerItem() {
return new IntegerItem();
}
}
但是当我尝试 @Autowire Item<String>
时,我得到了下面的例外。
"No qualifying bean of type [Item] is defined: expected single matching bean but found 2: stringItem, integerItem"
如何在春季自动装配泛型 Item<T>
?