1
我從來沒有見過一個自動裝配Autowired集合:確實Spring框架如何自動裝配集合
@Service
public class SomeFactory {
@Autowired
private List<Foo> foos;
@PostConstruct
public void init() {
for(Foo foo: foos) {
//do something
}
}
}
在init()方法,我可以看到FOOS有幾個項目已經。我猜Spring知道誰應該是foos的入口。但是,如何?如果我想將Foo對象添加到foos中,我該怎麼做?需要在屬性文件或其他想法中進行配置?