提示的异常信息如下:
java.lang.RuntimeException: com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "new_user" (class com.ossez.wechat.common.model.res.UserSummaryResponse$UserData), not marked as ignorable (5 known properties: "cancel_user", "new_users", "ref_date", "user_source", "cumulate_user"])
at [Source: (okhttp3.ResponseBody$BomAwareReader); line: 1, column: 63] (through reference chain: com.ossez.wechat.common.model.res.UserSummaryResponse["list"]->java.util.ArrayList[0]->com.ossez.wechat.common.model.res.UserSummaryResponse$UserData["new_user"])
at io.reactivex.internal.util.ExceptionHelper.wrapOrThrow(ExceptionHelper.java:46)
at io.reactivex.internal.observers.BlockingMultiObserver.blockingGet(BlockingMultiObserver.java:93)
这是因为 retrofit 在反序列化的时候,如果没有找到对应的对象名,将会报错。
关键是在下面这句话:
.addConverterFactory(JacksonConverterFactory.create())
需要做的也非常简单,只需要将上面的 Jackson 的 mapper 对象映射过来就可以了。
在 ObjectMapper 对象中,我们可以定义是不是忽略没有找到的字段。
就是下面这句话:
mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
这样我们就不会因为没有找到字段而出现异常的问题了。
https://www.ossez.com/t/retrofit-json-unrecognizedpropertyexception/14399
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。