gpt4 book ai didi

dagger-2 - 在 Dagger 中,一个 Inject 注释类是否也可以作为提供者?

转载 作者:行者123 更新时间:2023-12-02 02:54:01 25 4
gpt4 key购买 nike

我是 Dagger 的新手(Android 上的 2.16 版),根据我目前的阅读,我知道对于一个组件,应该有一个提供者( @Provides@Binds )封装在一个模块( @Module )中。通过大量示例,我看到代码中的一些对象没有在任何模块中提供,也没有使用 new 实例化。

我的理解也是,为了访问模块中的依赖关系,消费者类需要将自己注入(inject)到组件图中(组件通常提供注入(inject)类的方法)。代码示例也没有这样做。

Here's some code表明我的担忧。 RecipePresenter没有在任何模块中提供,但仍然 RecipeActivity正在使用它。

我能想到的一个可能的解释是 @Inject ,除了请求依赖之外,还将请求类(链接代码中的 RecipePresenter)添加/注入(inject)到组件图中。但是假设有多个组件/子组件,哪个组件使用 @Inject 进行类构造函数连接到?如果我的理解是正确的,为什么事件和片段必须在组件中手动注入(inject) - 如果它们声明一个带有 @Inject 注释的变量,它们不应该被自动注入(inject)吗? ?

最佳答案

RecipePresenter 有一个 @Inject -带注释的构造函数,允许提供它。 @Inject recipePresenter 上的注释RecipeActivity 中的字段没有帮助,只是 @Inject -带注释的构造函数。

class RecipePresenter @Inject constructor(
private val useCase: RecipeUseCase,
private val res: StringRetriever) :
RecipeUseCase.Callback {
From the Dagger User's Guide:

Use @Inject to annotate the constructor that Dagger should use to create instances of a class. When a new instance is requested, Dagger will obtain the required parameters values and invoke this constructor.


如果类与 @Inject -带注释的构造函数也有一个定义的 scope ,则绑定(bind)只会影响具有相同范围注释的组件: @ActivityScope无法从 @Singleton 访问类组件,例如。如果类没有定义范围,那么绑定(bind)可以出现在需要它的任何和所有组件上,这很好:实现总是相同的,由构造函数本身定义。

@Inject 根据注释的内容具有不同的含义:
  • 当您使用 @Inject 注释字段时,它表示 DI 系统在注入(inject)该对象时应根据 DI 系统的值设置该字段。
  • 当您使用 @Inject 注释方法时,它表示 DI 系统在注入(inject)该对象时应根据来自 DI 系统的值使用参数调用该方法。
  • 当您使用 @Inject 注释构造函数时,它表示允许 DI 系统调用该构造函数以创建该对象(这会触发上面的字段和方法注入(inject))。从这个意义上说,它确实像一个内置的提供者。

  • 特别是在 Dagger 中, @Provides方法优先于 @Inject构造函数(如果它们都存在于同一个类中),并且与 JSR-330 规范不同,Dagger 需要 @Inject - 带注释的构造函数,即使没有其他构造函数存在。来自 Dagger 用户指南:

    If your class has @Inject-annotated fields but no @Inject-annotated constructor, Dagger will inject those fields if requested, but will not create new instances. Add a no-argument constructor with the @Inject annotation to indicate that Dagger may create instances as well.

    Classes that lack @Inject annotations cannot be constructed by Dagger.



    最后,回答你关于为什么 Activity 和 Fragment 需要注入(inject)自己的问题:Android 可以在没有 Dagger 的帮助或参与的情况下反射性地创建 Activity/Fragment/View 对象。这意味着在调用 a members-injection method on the component 之前,不会触发上述字段和方法注入(inject)。指示 Dagger 填充这些字段并调用这些方法。因此,您永远不会看到 @Inject -Android 中 Application、Activity、Service、Fragment、View、ContentProvider 和 BroadcastReceiver 子类的带注释构造函数:Android 将忽略 @Inject注释,所以你不妨自己控制注入(inject),手动或通过 dagger.android .

    关于dagger-2 - 在 Dagger 中,一个 Inject 注释类是否也可以作为提供者?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50466681/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com