第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

返回 OkHttp 異步結(jié)果有問(wèn)題

返回 OkHttp 異步結(jié)果有問(wèn)題

三國(guó)紛爭(zhēng) 2023-04-13 10:25:31
我有一個(gè)java SDK,它使用OkHttp客戶端(4.0.0)從服務(wù)器獲取令牌IAM并將令牌返回給應(yīng)用程序。關(guān)系可能是這樣的:Applicaiton Sync call SDK,SDKAsync call IAM。參考這個(gè)答案Java - Retrieving Result from OkHttpAsynchronous GET,the代碼如下:異步類:class BaseAsyncResult<T> {private final CompletableFuture<T> future = new CompletableFuture<>();T getResult() {    try {        return future.get();    } catch (InterruptedException | ExecutionException e) {        e.printStackTrace();    }    return null;}void onFailure(IOException e) {    future.completeExceptionally(e);}void onResponse(Response response) throws IOException {    String bodyString = Objects.requireNonNull(response.body()).string();    future.complete(IasClientJsonUtil.json2Pojo(bodyString, new TypeReference<T>() {}));}}Okhttp 調(diào)用如下:public void invoke(Request request, BaseAsyncResult result) {        okHttpClient.newCall(request).enqueue(new Callback() {            @Override            public void onFailure(@NotNull Call call, @NotNull IOException e) {                result.onFailure(e);            }            @Override            public void onResponse(@NotNull Call call, @NotNull Response response) throws IOException {                result.onResponse(response);            }        });    }該應(yīng)用程序使用 sdk 代碼,如 iasClient 是 okhttp 客戶端的包裝器: BaseAsyncResult<AuthenticationResponse> iasAsyncResult = new BaseAsyncResult(); iasClient.invoke(request, iasAsyncResult); AuthenticationResponse result = iasAsyncResult.getResult();錯(cuò)誤消息:java.lang.ClassCastException: java.util.LinkedHashMap cannot be cast to x.x.x.AuthenticationResponse我錯(cuò)過(guò)了什么?
查看完整描述

2 回答

?
慕仙森

TA貢獻(xiàn)1827條經(jīng)驗(yàn) 獲得超8個(gè)贊

您需要確保 jackson 知道將值反序列化到哪個(gè)類。在這種情況下,您要求 Jackson 將響應(yīng)反序列化為 TypeReference ,默認(rèn)情況下它將解析為 Map ,除非您指定類(在本例中為 AuthenticationResponse )。因此, Future 解析為 linkedHashMap 并導(dǎo)致類轉(zhuǎn)換。嘗試替換下面的行。

future.complete(IasClientJsonUtil.json2Pojo(bodyString, new TypeReference<T>() {}));

future.complete(IasClientJsonUtil.json2Pojo(bodyString, new TypeReference<AuthenticationResponse>() {}));



查看完整回答
反對(duì) 回復(fù) 2023-04-13
?
收到一只叮咚

TA貢獻(xiàn)1821條經(jīng)驗(yàn) 獲得超5個(gè)贊

一種方法是將私有類類型變量添加到 BaseAsyncResult,然后在 json2Pojo 函數(shù)中使用該類,然后 BaseAsyncResult 可能如下所示:


public class BaseAsyncResult<T> {

    private final CompletableFuture<T> future = new CompletableFuture<>();

    private Class<T> classType;


    public BaseAsyncResult(Class<T> classType) {

        this.classType = classType;

    }


    public T getResult() {

        try {

            return future.get();

        } catch (InterruptedException | ExecutionException e) {

            e.printStackTrace();

        }

        return null;

    }


    void onFailure(IOException e) {

        future.completeExceptionally(e);

    }


    void onResponse(Response response) throws IOException {

        future.complete(JacksonUtil.json2Pojo(response.body().string(), classType));

    }

}


查看完整回答
反對(duì) 回復(fù) 2023-04-13
  • 2 回答
  • 0 關(guān)注
  • 225 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)