gpt4 book ai didi

java - 如何在 postman 中发送包含数组列表的对象

转载 作者:行者123 更新时间:2023-12-01 14:31:49 25 4
gpt4 key购买 nike

我正在用 springboot rest API 做一个项目。我的 Controller 类如下所示,

@RequestMapping(value = "/artdimfil", method = RequestMethod.POST, consumes = "application/json", produces = "application/json")
@ResponseBody
public boolean saveArticleDimFilter(@RequestBody ArtDimFil artDimFil)

我想在 postman 中发送以下有效载荷,

{
"id": "b30d1486-04c8-4acc-8d14-8604c81accab",
"docIdentifier": {
"recType": "ABC",
"accesslist": [
{
"userid": "xyz@abc.com",
"role": "abc",
"status": "Active",
"actiondate": "2020-07-03T17:59:34.600+0000",
"name": "XYZ",
}]
}
}

但是报错

[org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Cannot deserialize instance of `com.ibm.epm.next.model.Accesslist` out of START_ARRAY token; nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize instance of `com.ibm.epm.next.model.Accesslist` out of START_ARRAY token.

请建议我该怎么做。

最佳答案

它试图反序列化为“AccessList”——但我认为它没有使用你的“AccessList”,因为错误提示:无法反序列化 com.ibm.epm.next.model.Accesslist

的实例

我建议你重命名你的类,或者确保你有正确的导入语句。您应该导入自己的“AccessList”类。

关于java - 如何在 postman 中发送包含数组列表的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62745945/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com