gpt4 book ai didi

java - Retrofit Jackson 转换器无法识别嵌套对象

转载 作者:行者123 更新时间:2023-12-01 11:05:29 25 4
gpt4 key购买 nike

我正在使用 RetrofitJackson2SpiceService 在服务中发出请求。 Jackson 用于解析来自 API 的 JSON 响应。但我有一个问题。
我的用户模型具有以下声明

@JsonIgnoreProperties(ignoreUnknown=true)
public class User {
@JsonProperty("id")
public int id;
@JsonProperty("name")
public String name;
@JsonProperty("surname")
public String surname;
@JsonProperty("email")
public String email;
@JsonProperty("phone")
public String phone;
@JsonProperty("BirthDate")
public String birthDate;
@JsonProperty("token_model")
public Token token;
}

正如您可能注意到的,这个类有 Token 作为成员

@JsonIgnoreProperties(ignoreUnknown=true)
public class Token {
@JsonProperty("token")
public String token;
@JsonProperty("expiration_time")
public int expirationTime;
@JsonProperty("scope")
public int scope;
}

服务器响应如下所示

{"id":"36","email":"something@yo.com","name":"Say","surname":"hello","login":"superuser","phone":"4534333","token_model":{"token":"a220249b55eb700c27de780d040dea28","expiration_time":"1444673209","scope":"0"}}

token 未被解析,它始终为空。

我尝试手动转换字符串

 String json = "{\"id\":\"36\",\"email\":\"something@yo.com\",\"name\":\"Say\",\"surname\":\"hello\",\"login\":\"superuser\",\"phone\":\"4534333\",\"token_model\":{\"token\":\"a220249b55eb700c27de780d040dea28\",\"expiration_time\":\"1444673209\",\"scope\":\"0\"}}";
ObjectMapper mapper = new ObjectMapper();
User user = null;
try {
user = mapper.readValue(json, User.class);
} catch (IOException e) {
e.printStackTrace();
}

而且它有效! Token 解析正确,没有任何问题。

这里我使用了 readValue 方法接受字符串作为第一个参数,但在 Converter

  JavaType javaType = objectMapper.getTypeFactory().constructType(type);
return objectMapper.readValue(body.in(), javaType);

使用流版本的方法。

我尝试通过以下方式返回 Response 而不是 User 对象

  public void onRequestSuccess(Response response) {
super.onRequestSuccess(response);
ObjectMapper objectMapper = new ObjectMapper();
User user = null;
try {
user = objectMapper.readValue(response.getBody().in(), User.class);
} catch (IOException e) {
e.printStackTrace();
}
}

它工作得很好,就像它应该的那样, token 被正确解析。

我不知道什么会导致这样的问题,我尝试了很多不同的注释组合(自定义反序列化器,展开......),自定义转换器,但仍然相同。

如果有任何帮助,我将不胜感激。
谢谢。

最佳答案

我在探索Retrofit的源代码时发现了问题问题是,即使我的服务继承自 RetrofitJackson2SpiceService,默认情况下它也不使用 JacksonConverter

改为使用

GsonConverter

   mRestAdapterBuilder = new RestAdapter.Builder()
.setEndpoint(getServerUrl())
.setConverter(createConverter()) //this line
.setRequestInterceptor(new AuthRequestInterceptor(context))
.setClient(new OkClient(mHttpClient))
.setLogLevel(RestAdapter.LogLevel.FULL)
.setLog(new AndroidLog("RETROFIT"));

在构建休息适配器时显式添加转换器解决了问题。

关于java - Retrofit Jackson 转换器无法识别嵌套对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33004938/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com