我正在尝试使用Android Annotations实现以下Spring代码:
@Autowired
public initHandlerList(List
我尝试使用接口和类.
Bean定义:
@EBean
public AbstractHandler implements Handler {}
试图注入:
@Bean
public initHandlersList(List
但总是得到以下错误:
Error:(20,5) error: org.androidannotations.annotations.Bean can only be used on an element annotated with @org.androidannotations.annotations.EBean
所以我想因为列表本身没有用@EBean注释它不能用作Bean …任何使用Android Annotations实现它的方法?
谢谢 !
最佳答案
原文链接:https://www.f2er.com/spring/432390.html