gpt4 book ai didi

dependency-injection - 带有构造函数参数的 Dagger 模块?

转载 作者:行者123 更新时间:2023-12-04 18:45:09 25 4
gpt4 key购买 nike

在 Guice 中,我可以完全控制何时构建模块,并使用一些带有我安装的构造函数参数的模块。

然而,在 Dagger 中,引用其他模块的方法是通过 @Module 包含注释,并且没有向我提供创建要安装的模块的相同方法。

是否可以从具有构造函数参数的多个模块创建一个健全的 ObjectGraph?尤其是可以与 dagger-compiler 一起使用,并且不会遇到循环图的?

最佳答案

如果您有多个模块使用相同的对象,那么也许您应该将该对象分离到它自己的模块中。例如,很多模块使用应用程序上下文,所以我有以下模块:

@Module
public class ContextModule {

private final Context mContext;

public ContextModule(Context context) {
mContext = context;
}

@Provides
public Context provideContext() {
return mContext;
}

}

所以现在在其他模块中,当我需要一个上下文对象时,我只包含该模块。

例如:
@Module(entryPoints = { MyFragment.class }, includes = { ContextModule.class })
public class ServicesModule {

@Provides
public LocationManager provideLocationManager(Context context) {

return (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);
}

@Provides
public Geocoder provideGeocoder(Context context) {
return new Geocoder(context);
}
}

然后,当我构造对象图时,我最终只得到一个将应用程序上下文作为参数的模块。

关于dependency-injection - 带有构造函数参数的 Dagger 模块?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15846349/

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