如何在使用gson转换器时使用改装作为单例?

2022-09-04 03:43:27

从@jake沃顿的答案中,您应该只调用 restAdapter.create 一次,并在每次需要交互时重新使用相同的 MyTaskService 实例。这一点我怎么强调也不过分。您可以使用常规单例模式,以确保在任何地方都只有这些对象的单个实例。依赖关系注入框架也可用于管理这些实例,但如果尚未使用它,则有点过分。

这是我的代码

public class MusicApi {
private static final String API_URL = "https://itunes.apple.com";
private static MusicApiInterface sMusicApiInterface;

public static MusicApiInterface getApi() {
    if (sMusicApiInterface == null) {
        sMusicApiInterface = null;
        RestAdapter restAdapter = new RestAdapter.Builder()
                .setEndpoint(API_URL)
                .build();

        sMusicApiInterface = restAdapter.create(MusicApiInterface.class);
    }
    return sMusicApiInterface;
}

public interface MusicApiInterface {
    @GET("/search?entity=musicVideo")
    NetworkResponse getMusic(@Query("term") String term);

    @GET("/search?entity=musicVideo")
    void getMusic(@Query("term") String term, Callback<NetworkResponse> networkResponseCallback);

    @GET("/search?entity=musicVideo")
    Observable<NetworkResponse> getMusicObservable(@Query("term") String term);
}

}

一切都很好。我正在使用类型适配器,对于每个请求,我需要创建不同类型的gson解析并设置为适配器。

Gson gson = new GsonBuilder().registerTypeAdapter(DiscussionViewMoreContainer.class, new ExplorerDeserializerJson())
            .create();

它使我每次都必须创建一个新的resadapter。在我的应用中,某些请求 parallely.is 这种正确的方式运行?


答案 1

您不必每次都创建它,而只需创建一次,当您创建 RestAdapter 时:

public static MusicApiInterface getApi() {
    if (sMusicApiInterface == null) {
       Gson gson = new GsonBuilder()
           .registerTypeAdapter(DiscussionViewMoreContainer.class, new ExplorerDeserializerJson())
           .create();
       RestAdapter restAdapter = new RestAdapter.Builder()
            .setEndpoint(API_URL)
            .setConverter(new GsonConverter(gson))
            .build();
       sMusicApiInterface = restAdapter.create(MusicApiInterface.class);
     }
     return sMusicApiInterface;
}

如果您需要注册多个,请致电.多次使用自定义的对和实例。Gson将根据您调用的改造方法的返回类型调用正确的一个。例如DeserializerregisterTypeAdapterClass/TypeTokenDeserializer

Gson gson = new GsonBuilder()
           .registerTypeAdapter(DiscussionViewMoreContainer.class, new ExplorerDeserializerJson())
           .registerTypeAdapter(OtherModelClass.class, new OtherModelClassDeserializerJson())
           .registerTypeAdapter(OtherModelClass3.class, new OtherModelClass3DeserializerJson())

答案 2

以下是 Singletone RestAdapter & ApiInterface 类的完整代码。如果我们使用RxAndroid,我们也可以使用RxJava2CallAdapterFactory。

import com.jakewharton.retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory;
import kaj.service.customer.utility.ApplicationData;
import retrofit2.Retrofit;
import retrofit2.converter.gson.GsonConverterFactory;

/**
 * Created by @ShihabMama 20/12/18 5.02 AM :)
 */

public class RestAdapter {

    private static Retrofit retrofit = null;
    private static ApiInterface apiInterface;

    public static ApiInterface getRxClient() {
        if (apiInterface == null) {
            retrofit = new Retrofit.Builder()
                    .baseUrl(ApplicationData.FINAL_URL)
                    .addCallAdapterFactory(RxJava2CallAdapterFactory.create())
                    .addConverterFactory(GsonConverterFactory.create())
                    .build();

            apiInterface = retrofit.create(ApiInterface.class);
        }
        return apiInterface;
    }

    public static ApiInterface getApiClient() {
        if (apiInterface == null) {
            retrofit = new Retrofit.Builder()
                    .baseUrl(ApplicationData.FINAL_URL)
                    .addConverterFactory(GsonConverterFactory.create())
                    .build();

            apiInterface = retrofit.create(ApiInterface.class);
        }
        return apiInterface;
    }

}

Api 接口类

import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.POST;
import retrofit2.http.Query;

/**
 * Created by @Shihab_Mama on 11/25/2016.
 */
public interface ApiInterface {

    // TODO: 12/20/2018 sample below
    @GET("orderapi/getOrders?")
    Call<OrderListModel> getOrders(
            @Query("accessToken") String accessToken,
            @Query("companyId") String companyId,
            @Query("customerId") int customerId);

    @POST("orderapi/placeOrder")
    Call<PlaceOrderResponseModel> placeOrder(
            @Query("accessToken") String accessToken,
            @Query("companyId") String companyId,
            @Query("branchId") int branchId,
            @Query("customerId") int customerId,
            @Query("orderNo") String orderNo,
            @Query("orderItemList") String orderItemList,
            @Query("discountedTotalBill") String discountedTotalBill,
            @Query("discountedTotalVat") String discountedTotalVat);

}

推荐