java - Android:Dagger 2 构造函数注入(inject)不会调用构造函数并最终出现 NPE

标签 java android dagger-2 dagger

嗯,我浏览了所有 SO 帖子以及在线教程和博客。我似乎无法理解 dagger 2 构造函数注入(inject)中空指针异常背后的原因。

问题是构造函数没有被调用,而是调用,

public void getMobileDataUsage(OnDatastoreResponse onDatastoreResponse)

并导致空指针

我有一个使用构造函数注入(inject)的单例 APIClient 类。

@Singleton
public class APIClient {

private static final String TAG = "APIClient";

private APIInterface apiInterface;
private Retrofit retrofit;

@Inject
public APIClient(Context context) {
    // use 10MB cache
    long cacheSize = 10 * 1024 * 1024;
    Cache cache = new Cache(context.getCacheDir(), cacheSize);

    HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor();
    interceptor.setLevel(HttpLoggingInterceptor.Level.BODY);
    OkHttpClient client = new OkHttpClient.Builder().addInterceptor(interceptor).cache(cache).build();

    retrofit = new Retrofit.Builder()
            .baseUrl(BuildConfig.BASE_URL)
            .addConverterFactory(GsonConverterFactory.create())
            .addCallAdapterFactory(RxJava2CallAdapterFactory.create())
            .client(client)
            .build();

    this.apiInterface = retrofit.create(APIInterface.class);
}

public void getMobileDataUsage(OnDatastoreResponse onDatastoreResponse) {
    String resourceId = "a807b7ab-6cad-4aa6-87d0-e283a7353a0f";
    Integer limit = null;

    Single<DatastoreResponse> datastoreResponse = apiInterface.getMobileDataUsage(resourceId, limit);
    datastoreResponse.subscribeOn(Schedulers.io())
            .observeOn(AndroidSchedulers.mainThread())
            .subscribe(new DisposableSingleObserver<DatastoreResponse>() {
                @Override
                public void onSuccess(DatastoreResponse datastoreResponse) {
                    if (datastoreResponse.getSuccess()) {
                        Log.d(TAG, "onSuccess: " + datastoreResponse.getSuccess());

                        onDatastoreResponse.onSuccessDatastoreResponse(datastoreResponse);

                    } else {
                        Log.e(TAG, "onSuccess: " + datastoreResponse.getSuccess());
                        onDatastoreResponse.onErrorResponse(new Exception("Datastore response not successful"));
                    }
                }

                @Override
                public void onError(Throwable e) {
                    Log.e(TAG, "onError: " + e.getMessage(), e);
                    onDatastoreResponse.onErrorResponse(e);
                }
            });
}

}

我有一个提供者为上述构造函数注入(inject)提供上下文。

@Module
public class ApplicationContextModule {

private final Context context;

public ApplicationContextModule(Context context) {
    this.context = context;
}

@Provides
Context provideApplicationContext() {
    return context;
}

}

以下是我的应用程序组件,

@Singleton
@Component(modules = {ApplicationContextModule.class, DataModule.class})
public interface ApplicationComponent {

void inject(MobileDataUsageActivity mobileDataUsageActivity);

APIClient apiClient();

Context context();

}

构建组件的我的应用程序类,

public class MyApplication extends Application {

private ApplicationComponent applicationComponent;

@Override
public void onCreate() {
    super.onCreate();

    applicationComponent = DaggerApplicationComponent
            .builder()
            .applicationContextModule(new ApplicationContextModule(this))
            .dataModule(new DataModule())
            .build();

}

public ApplicationComponent getApplicationComponent() {
    return applicationComponent;
}
}

我在 Activity 的 onCreate 期间注入(inject)实例,

((MyApplication) getApplication()).getApplicationComponent().inject(this);

最后我的存储库类抛出空指针异常。注意我有@Inject APIClient。然而,调试后我注意到 APIClient 为 null,因为它没有调用构造函数。

public class MobileDataRepository {

private static final String TAG = "MobileDataRepository";

@Inject
APIClient apiClient;

private List<Quarter> quarterList = new ArrayList<>();
private List<Year> yearList = new ArrayList<>();

private MutableLiveData<List<Year>> mutableYearList = new MutableLiveData<>();

public LiveData<List<Year>> getYearlyMobileDataUsage() {
    apiClient.getMobileDataUsage(new OnDatastoreResponse() {
        @Override
        public void onSuccessDatastoreResponse(DatastoreResponse datastoreResponse) {

            for (QuarterResponse q : datastoreResponse.getResult().getRecords()) {
                Log.d(TAG, "Quarter: " + q.get_id() + " : " + q.getQuarter());

                String quarterInfo[] = q.getQuarter().split("-");
                String year = quarterInfo[0];
                String quarterName = quarterInfo[1];

                quarterList.add(new Quarter(q.get_id(), q.getVolume_of_mobile_data(), Integer.parseInt(year), quarterName));
            }
            mutableYearList.setValue(yearList);
        }

        @Override
        public void onErrorResponse(Throwable e) {

        }
    });

    return mutableYearList;

}

}

并且告诉 APIClient 实例未创建的异常(注意:我已调试到验证 APIClient 为空),

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.channa.mobiledatausageapp/com.channa.mobiledatausageapp.view.MobileDataUsageActivity}: java.lang.NullPointerException: Attempt to invoke virtual method 'void com.channa.mobiledatausageapp.network.APIClient.getMobileDataUsage(com.channa.mobiledatausageapp.network.action.OnDatastoreResponse)' on a null object reference

对于庞大的代码,我们深表歉意。我只是想指出,我已经完成了所需的一切,但由于某些奇怪的原因,构造函数 DI 不起作用。我什至尝试使用 @Provider for APIClient 仍然出现相同的错误。提前致谢!

哦,我使用的是 dagger 版本:2.15

// Dagger 2
implementation "com.google.dagger:dagger:$rootProject.daggerVersion"
annotationProcessor "com.google.dagger:dagger-compiler:$rootProject.daggerVersion"

最佳答案

要进行此注入(inject),您必须在 ApplicationComponent 内创建一个方法 voidject(MobileDataRepository mobileRepository),然后在 MobileDataRepository< 内获取对此组件的引用/strong> 并在某处调用此注入(inject)方法(例如,在构造函数中)

或者,为了让它更好,因为您已经有一个注入(inject)方法将依赖项注入(inject)到您的 MobileDataUsageActivity 中,您可以在 MobileDataRepository 中创建一个带有 @Inject 注释的构造函数> 然后将其注入(inject)到您的 Activity 中。它看起来像这样:

class MobileDataRepository { 
    @Inject
    public MobileDataRepository(APIClient apiClient) 
    { //do your initialization } 
}

然后,在您的 Activity 中:

class MobileDataUsageActivity {

    @Inject MobileDataRepository mobileDataRepository

// other code 
}

附注抱歉格式不对,我是用手机写的:)

关于java - Android:Dagger 2 构造函数注入(inject)不会调用构造函数并最终出现 NPE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54738465/

相关文章:

java - 如何将参数传递给 TestNG 监听器

java - 不知道如何在 .prettierrc 中使用 Prettier Plugin

java - 格式化字符串日期

android - Dagger2 生成的类突然从 Android Studio 中消失了

android - 确定正在调用哪个测试设置()?

java - 如何用Java平滑移动鼠标光标?

android - 我可以使用 VB.NET 开发使用 MonoDroid 的应用程序吗?

java - 普特斯特拉不工作

java - 在自定义 Unity Android 插件上调用非静态方法

generics - 注入(inject)由抽象类型参数化的类型化类