我正在尝试使用Android Annotations实现以下Spring代码:
@Autowired public initHandlerList(ListhandlerList) { // Do stuff with the list ... }
我尝试使用接口和类.
Bean定义:
@EBean public AbstractHandler implements Handler {}
试图注入:
@Bean public initHandlersList(ListhandlersList) { // Do stuff with the 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实现这一点的方法?
谢谢 !