使用 Gson 作為帶有 Retrofit 的序列化程式

首先,你需要將 GsonConverterFactory 新增到 build.gradle 檔案中

compile 'com.squareup.retrofit2:converter-gson:2.1.0'

然後,你必須在建立 Retrofit 服務時新增轉換器工廠:

Gson gson = new GsonBuilder().create();
new Retrofit.Builder()
        .baseUrl(someUrl)
        .addConverterFactory(GsonConverterFactory.create(gson))
        .build()
        .create(RetrofitService.class);

你可以在建立要傳遞給工廠的 Gson 物件時新增自定義轉換器。允許你建立自定義型別轉換。