是的,您可以这样做。春天的文档说:
通过将注释添加到需要该类型数组的字段或方法中,也可以从ApplicationContext提供特定类型的所有bean。
请注意,它说您需要一个数组,而不是一个列表。这是有道理的,因为通用类型擦除意味着列表可能在运行时不起作用。但是,请使用以下有效的单元测试:
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"> <bean /> <bean /> <bean /></beans>
和这个单元测试:
package test;@ContextConfiguration@RunWith(SpringJUnit4ClassRunner.class)public class Test { private @Autowired List<TypeA> beans; @org.junit.Test public void test() { assertNotNull(beans); assertEquals(2, beans.size()); for (TypeA bean : beans) { assertTrue(bean instanceof TypeA); } } public static interface TypeA {} public static class TypeB implements TypeA {} public static class TypeC extends TypeB {} public static class TypeD {}}
所以正式来说,您应该自动布线
TypeA[],而不是
List<TypeA>,但是List很好用。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)