"JSON parse error: Cannot deserialize value of type `java.util.ArrayList<com.shendi.dolphin.scrap.vo.ScrapApplyDetailVO>` from String value (token `JsonToken.VALUE_STRING`); nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize value of type `java.util.ArrayList<com.shendi.dolphin.scrap.vo.ScrapApplyDetailVO>` from String value (token `JsonToken.VALUE_STRING`)\n at [Source: (PushbackInputStream); line: 26, column: 17] (through reference chain: com.shendi.dolphin.stock.entity.dto.StorageWorkflowDTO[\"scrapApplyVO\"]->com.shendi.dolphin.scrap.vo.ScrapApplyVO[\"detailList\"])",
时间: 2024-04-27 19:20:38 浏览: 211
Caused by: java.lang.ClassNotFoundException: org.objectweb.asm.Type异常
这似乎是一个JSON反序列化错误,意味着您尝试将一个字符串转换成一个ArrayList<ScrapApplyDetailVO>对象,但是反序列化器无法将该字符串转换为该类型的对象。可能需要检查JSON字符串的格式是否正确,并确保它符合ArrayList<ScrapApplyDetailVO>对象的预期结构。另外,您还可以检查反序列化器是否正确地配置。
阅读全文