我正在使用RetrofitJackson2SpiceService
在服务中发出请求。 Jackson用于解析API中的JSON响应。
但我有一个问题
我的User model
有以下声明
@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;
}
您可能已经注意到此类将令牌作为成员
@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"}}
令牌未被解析,它始终为空。
我试图手动转换字符串
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();
}
它有效!令牌正确解析没有任何问题。
这里我使用readValue
方法接受String作为第一个参数,但在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();
}
}
它工作得很好,就像它应该的那样,令牌被正确解析。
我不知道是什么原因造成了这样的问题,我已经尝试了很多不同的注释组合(自定义反序列化器,解包....),自定义转换器但仍然相同。
如果有任何帮助,我将不胜感激 感谢。
答案 0 :(得分:1)
我发现了探索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"));
在构建rest适配器时显式添加转换器解决了这个问题。