Cannot construct instance of xxx:cannot deserialize from Object value

Cannot construct instance of cn.abs.third.entity.starnet.SmsResult (no Creators, like default construct, exist): cannot deserialize from Object value (no delegate- or property-based Creator)

问题出现的位置:实体类使用了lombok插件,在使用反序列化的时候,就会报错
实体类环境:
实体类使用的lombok插件的注解
@Data:对属性设置get、set方法
@Builder:创建对象

解决方法:
实体类添加构造方法
@AllArgsConstructor:含参构造方法
@NoArgsConstructor:无参构造方法

你可能感兴趣的:(java)