Retrofit 2 による正確な JSON ロギング
API リクエストを送信するとき、リクエストに含まれる正確な JSON データを取得することは、デバッグやデバッグに非常に重要です。分析。 Retrofit 2 は、HttpLoggingInterceptor を通じてこれを実現する合理的な方法を提供します。
HttpLoggingInterceptor の構成
HttpLoggingInterceptor を使用するには、次の依存関係をbuild.gradle:
implementation 'com.squareup.okhttp3:logging-interceptor:4.11.0'
次に、次のように Retrofit オブジェクトを作成します。
HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor(); interceptor.setLevel(HttpLoggingInterceptor.Level.BODY); OkHttpClient client = new OkHttpClient.Builder().addInterceptor(interceptor).build(); Retrofit retrofit = new Retrofit.Builder() .baseUrl("https://backend.example.com") .client(client) .addConverterFactory(GsonConverterFactory.create()) .build(); return retrofit.create(ApiClient.class);
上記の構成では、非推奨の setLogLevel(RestAdapter. LogLevel.FULL) のレトロフィット1.
クラスが見つからない例外への対処
java.lang.ClassNotFoundException が発生した場合は、古いバージョンの Retrofit には古いロギング インターセプタ バージョンが必要である可能性があります。互換性の詳細については、ロギングインターセプターの GitHub コメントを参照してください。
以上がRetrofit 2 で正確な JSON ロギングを実現するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。