作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在用 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/
我是一名优秀的程序员,十分优秀!