微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

java – 有人可以为Dagger 2提供一个很好的解释吗?

我真的很难理解匕首2依赖注入系统.

我明白使用@Inject注释告诉匕首我们需要提供一些类型的实例到这里.

但是,我不明白其他组件的各种角色,例如:@Module,@Component,@Provides以及它们如何协同工作,为适当的依赖关系提供适当的实例.

有人可以简单扼要地解释一下吗?

解决方法

@Module: Modules are classes whose methods provide dependencies,so we
define a class and annotate it with @Module,thus,Dagger will kNow
where to find the dependencies in order to satisfy them when
constructing class instances. One important feature of modules is that
they have been designed to be partitioned and composed together (for
instance we will see that in our apps we can have multiple composed
modules).

@Component: Components basically are injectors,let’s say a bridge between
@Inject and @Module,which its main responsibility is to put
both together. They just give you instances of all the types you
defined,for example,we must annotate an interface with @Component
and list all the @Modules that will compose that component,and if any
of them is missing,we get errors at compile time. All the components
are aware of the scope of dependencies it provides through its
modules.

@Provide: Inside modules we define methods containing this annotation
which tells Dagger how we want to construct and provide those
mentioned dependencies.

我建议你阅读:

> Tasting Dagger 2 on Android by Fernando Cejas
> Dependency Injection with Dagger 2 (Devoxx 2014) by Jake Wharton
> Dependency Injection with Dagger 2
> Dependency injection with Dagger 2 – the API by froger_mcs
> Dependency injection with Dagger 2 – Custom scopes by froger_mcs

我想这将有助于理解.

原文地址:https://www.jb51.cc/java/126633.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐