当前位置:  开发笔记 > 编程语言 > 正文

Android注释 - 注入超类类型列表

如何解决《Android注释-注入超类类型列表》经验,为你挑选了0个好方法。

我正在尝试使用Android Annotations实现以下Spring代码:

@Autowired
public initHandlerList(List handlerList) {
   // Do stuff with the list ...
}

我尝试使用接口和类.

Bean定义:

@EBean
public AbstractHandler implements Handler {}

试图注入:

@Bean
public initHandlersList(List handlersList) {
  // 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实现这一点的方法?

谢谢 !

推荐阅读
小色米虫_524
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有