我在springboot rest API中做一个项目。
我的控制器类如下所示,
@RequestMapping(value = "/artdimfil", method = RequestMethod.POST, consumes = "application/json", produces = "application/json")
@ResponseBody
public boolean saveArticleDimFilter(@RequestBody ArtDimFil artDimFil)
我想在邮递员中发送以下有效载荷,{
"id": "b30d1486-04c8-4acc-8d14-8604c81accab",
"docIdentifier": {
"recType": "ABC",
"accesslist": [
{
"userid": "[email protected]",
"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”类。