JSON parse error: Cannot deserialize instance of `java.util.ArrayList
Posted 梦与光同行
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JSON parse error: Cannot deserialize instance of `java.util.ArrayList相关的知识,希望对你有一定的参考价值。
今天测试接口,JSON里面有个集合,一直报错如下所示
"name": "到底怎么回事呢",
"status": "0",
"tenantId": "123",
"createId": "123",
"modifyId": "123",
"labelItemRelations":
"itemId": "111",
"status": "1",
"tenantId": "123",
"createId": "123",
"modifyId": "123"
仔细观察发现是json格式写错了,因为Java对象他们是一个数组,我这样写是错误的,正确写法应该是,正确的集合应该是下面的样子
"name": "到底怎么回事呢",
"status": "0",
"tenantId": "123",
"createId": "123",
"modifyId": "123",
"labelItemRelations": [
"itemId": "111",
"status": "1",
"tenantId": "123",
"createId": "123",
"modifyId": "123"
]
这样写我的后台Java参数才能收到,不然我的JSON解析是有问题的
JSON格式上,平常没注意,都是贴别人的,现在让自己构造,出了很大问题,需要在熟悉熟悉JSON格式
以上是关于JSON parse error: Cannot deserialize instance of `java.util.ArrayList的主要内容,如果未能解决你的问题,请参考以下文章
Ajax提交数据SpringBoot后台报错“HttpMessageNotReadableException: JSON parse error: Cannot construct instance“
JSON parse error: Cannot deserialize value of type `java.util.Date` from String
JSON parse error: Cannot deserialize instance of `java.util.ArrayList<java.lang.Long>` out of START_
JSON parse error: Cannot deserialize value of type `java.util.Date` from String
解决日期转换异常 JSON parse error: Cannot deserialize value of type `java.util.Date` from String
解决日期转换异常 JSON parse error: Cannot deserialize value of type `java.util.Date` from String