出现这个报错百分之80都是实体类有问题,检查下实体类的get/set方法,有没有空指针
我这里是这样的,get方法忘了空判断
public Date getLastUpdate() { return amphoraHealth.getLastUpdate(); }
加个判断就行啦
public Date getLastUpdate() { return amphoraHealth == null ? null : amphoraHealth.getLastUpdate(); }
2022-05-21 02:28:56
出现这个报错百分之80都是实体类有问题,检查下实体类的get/set方法,有没有空指针
我这里是这样的,get方法忘了空判断
public Date getLastUpdate() { return amphoraHealth.getLastUpdate(); }
加个判断就行啦
public Date getLastUpdate() { return amphoraHealth == null ? null : amphoraHealth.getLastUpdate(); }