Could not write JSON: (was java.lang.NullPointerException); nested exception is...不出意外就是这个原因

出现这个报错百分之80都是实体类有问题,检查下实体类的get/set方法,有没有空指针

我这里是这样的,get方法忘了空判断

public Date getLastUpdate() {
    return amphoraHealth.getLastUpdate();
}

加个判断就行啦

public Date getLastUpdate() {
   return amphoraHealth == null ? null : amphoraHealth.getLastUpdate();
}


上一篇:Windbg 分析Windows蓝屏原因的方法


下一篇:第9章 Kotlin与Java互操作(Interoperability) 《Kotin 编程思想·实战》