返回顶部
首页 > 资讯 > 后端开发 > JAVA >测试接口,发起请求时候报错JSON parse error: Cannot deserialize instance of java.util.ArrayList<java.lang.Object>
  • 897
分享到

测试接口,发起请求时候报错JSON parse error: Cannot deserialize instance of java.util.ArrayList<java.lang.Object>

javajsonsql 2023-09-11 21:09:08 897人浏览 独家记忆
摘要

问题一: JSON parse error: Cannot deserialize instance of java.util.ArrayList out of START_OBJECT toke

问题一:

JSON parse error: Cannot deserialize instance of java.util.ArrayList out of START_OBJECT token; nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize instance of java.util.ArrayList out of START_OBJECT token
at [Source: (PushbackInputStream); line: 1, column: 1]

原因:

参数字段不匹配,比如我这里写的后端接口接受的参数是数组(@RequestBody List< String> customers),但是传参又是一个json数据,没对应好(如下图

在这里插入图片描述

解决方法:

数组应该这样子传

在这里插入图片描述

问题二:

Content type ‘text/plain;charset=UTF-8’ not supported

测试接口时,postman:

在这里插入图片描述

后端:

在这里插入图片描述

只需要在请求的请求头上设置Content-Type为application/json就行

在这里插入图片描述

问题三:

The error may involve defaultParameterMap
The error occurred while setting parameters
Cause: java.sql.SQLSyntaxErrorException: Duplicate column name ‘id’; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Duplicate column name ‘id’

在这里插入图片描述

原因:

连接了多个表都带有id,而我又为了省事直接select *,

解决方法:

要哪些数据就拿那些数据,而我只需要某一张表的字段加上其他表的几个字段就可以用select 表名.星,表名.字段获取

来源地址:https://blog.csdn.net/Januea/article/details/129317050

--结束END--

本文标题: 测试接口,发起请求时候报错JSON parse error: Cannot deserialize instance of java.util.ArrayList<java.lang.Object>

本文链接: https://lsjlt.com/news/403733.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作