java – Android Annotations – 注入超类类型列表

前端之家收集整理的这篇文章主要介绍了java – Android Annotations – 注入超类类型列表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在尝试使用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实现它的方法?

谢谢 !

最佳答案
对不起,我无法评论,但我的声誉太低了.

我读了wiki并在基于方法的注射下我看到了你如何注入豆子.我在你的代码中看到的是你确实在创建一个带有AbstractHandler对象的EBean,但是你试图注入一个没有用@EBean注释的List对象,你可以删除List<>并且只需使用AbstractHandler,或者您可以扩展List实现(如ArrayList)并使用@EBean注释它.

@EBean
public class InjectableArrayList

希望这可以帮助.

原文链接:https://www.f2er.com/spring/432390.html

猜你在找的Spring相关文章