0
初始化屬性我有一個非簧bean類,看起來像這樣:使用一個Spring bean的依賴
public class ReportFilterManager implements Serializable {
private static final long serialVersionUID = 1L;
@SpringBean
private IControllersConfigService controllersConfigService;
private List<String> fromGroupOfControllers = controllersConfigService.getAllGroupOfControllersNames();
我想用的Spring bean controllersConfigService的方法給init fromGroupOfControllers領域。什麼是最好的方式來做到這一點?