2 回答
TA贡献1827条经验 获得超7个赞
您需要确保 jackson 知道将值反序列化到哪个类。在这种情况下,您要求 Jackson 将响应反序列化为 TypeReference ,默认情况下它将解析为 Map ,除非您指定类(在本例中为 AuthenticationResponse )。因此, Future 解析为 linkedHashMap 并导致类转换。尝试替换下面的行。
future.complete(IasClientJsonUtil.json2Pojo(bodyString, new TypeReference<T>() {}));
和
future.complete(IasClientJsonUtil.json2Pojo(bodyString, new TypeReference<AuthenticationResponse>() {}));
TA贡献1821条经验 获得超4个赞
一种方法是将私有类类型变量添加到 BaseAsyncResult,然后在 json2Pojo 函数中使用该类,然后 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));
}
}
添加回答
举报