当前位置:   article > 正文

Cannot deserialize instance of `java.lang.Integer` out of START_OBJECT token解决方法

cannot deserialize instance of `java.lang.integer` out of start_object token

postman测试json传入

{"umaiId":"25","userApplyDetailInfos":[{"mtiTypeId":133,"uaciNum":9},{"mtiTypeId":39,"uaciNum":2}]}
  • 1

报错如下:
“message”: “JSON parse error: Cannot deserialize instance of java.lang.Integer out of START_OBJECT token; nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize instance of java.lang.Integer out of START_OBJECT token\n at [Source: (PushbackInputStream); line: 1, column: 1]”

我看了一下代码中,接受参数的方法头是:

public String updateUserApplyDetailInfo(@RequestBody Integer umaiId, List<UserApplyDetailInfo> userApplyDetailInfos){   }
  • 1

问题就出现在这里,传入的方式是json,而接收的方式不是,所以报错!
那么更改方法头:

 public String updateUserApplyDetailInfo(@RequestBody String str) {
        Integer umaiId = Integer.parseInt(JSON.parseObject(str).get("umaiId").toString());
        List<UserApplyDetailInfo> userApplyDetailInfos = JSON.parseArray(JSON.parseObject(str).getString("userApplyDetailInfos"), UserApplyDetailInfo.class);
}
  • 1
  • 2
  • 3
  • 4

用这种方法接收并且转换成所需要的对象就可以了

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/305387
推荐阅读
相关标签
  

闽ICP备14008679号