在我的 spring-boot 项目中,我有一个控制器
@RequestMapping(path = { "/multiCommunication" }, consumes = {
MediaType.APPLICATION_JSON_VALUE }, method = RequestMethod.POST)
ResponseEntity<Object> multiCommunication(ArrayList<HashMap<String, String>> listOfInput){ //code}
我无法访问该列表,因为 Jackson 无法提交我的请求。
要求:
[ { "type": "HPMRE", "pipFirstName": "ABC" }, { "type": "HPMRE", "pipFirstName": "XYZ" } ]
JSON 有问题吗?
我曾尝试制作一个模型类,它有一个类型为ArrayList<HashMap<String, String>>Still jackson的变量,但无法对其进行转换。
相关分类