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

前端之家收集整理的这篇文章主要介绍了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.f2er.com/java/126633.html

猜你在找的Java相关文章