我已经创建了一个bean,它希望注入给定类型的所有bean ......就像这样:
public class MyClass {
private List<MyOtherBean> myOtherBeansList;
....
@Inject
public void setMyOtherBeanList(List<MyOtherBean> otherBeanList) {
this.myOtherBeansList = otherBeanList;
}
这种方法很好,除非我没有类型&#39; MyOtherBeans&#39;定义。在我的业务逻辑中,这没关系!但是春天并不喜欢它并抛出过于熟悉的东西:
org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type...
异常。在这种情况下,有没有人知道如何让弹簧传递给我?
答案 0 :(得分:1)
没关系..我是笨蛋。
@Autowired(所需=假)