在Spring 中,我们可以使用@Autowire获取Spring 容器中的相同类型bean的集合形式,
@Autowired
private List<BeanInterface> list;
@Autowired
private Set<BeanInterface> set;
@Autowired
private Map<String, BeanInterface> map;
@Order可以指定Bean在集合中的顺序,但只针对List集合有效,Set和Map集合都无效
版权声明:本文为colourrain原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。