org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Cannot construct instance of `com.emyiw.invsystem.entity.vo.BillQueryResponse` (although at least one Creator exists): no String-argument constructor/factory method to deserialize from String value ('0'); nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot construct instance of `com.emyiw.invsystem.entity.vo.BillQueryResponse` (although at least one Creator exists): no String-argument constructor/factory method to deserialize from String value ('0') at [Source: (PushbackInputStream); line: 45, column: 18] (through reference chain: com.emyiw.invsystem.entity.vo.Results["Data"]->java.util.ArrayList[5])
时间: 2024-04-26 10:21:01 浏览: 250
深入剖析 JavaScript 中的 JSON.stringify 和 JSON.parse
这是一个 Spring 框架中的异常,应该是在将 JSON 数据转换成 Java 对象时出现问题。异常信息显示,无法通过String参数的构造函数或工厂方法来从字符串值('0')中反序列化出`com.emyiw.invsystem.entity.vo.BillQueryResponse`对象。同时,异常栈还提到了出错的行和列位置,你需要结合具体的代码和数据,检查数据是否符合对象的定义,以及对象的构造函数或工厂方法是否正确。
阅读全文