[2019/05/17]解決springboot測試List接口時JSON傳參異常

報錯信息,大體以下

c.c.c.c.a.BaseControllerExceptionHandler : 運行時異常:
java.lang.IllegalStateException: No primary or default constructor found for interface java.util.List
at org.springframework.web.method.annotation.ModelAttributeMethodProcessor.createAttribute(ModelAttributeMethodProcessor.java:212)
......
WARN 18472 --- [nio-9090-exec-2] .m.m.a.ExceptionHandlerExceptionResolver : Resolved exception caused by Handler execution: java.lang.IllegalStateException: No primary or default constructor found for interface java.util.List
---前端

再次修改後仍又報錯:

org.springframework.http.converter.
HttpMessageNotReadableException: Required request body is missing:
---
(以上報錯信息穀歌翻譯了一遍,大體知道了是屬性接收異常和http消息轉換異常)java

緣由 : 接口不規範, 後端一時快, 前端兩行淚
第二次報錯緣由, @RequestBody這個標籤在post 、put 方法中用於接收json格式的數據 ,get方法不行! get方法不行!
第一次報錯緣由, @RequestBody用來接收一個List當作總體, 不要用@RequestParam--JSON格式的list無法實現對應了, 也不要錯誤寫成@Param~~
規範寫法
@ApiOperation(value = "批量刪除")
    @PostMapping(value = "delBatchIds")
    public Boolean delBatchIds(@RequestBody List<Long> ids){
        return xxxxxService.deleteBatchIds(ids);
    }
再次測試,OK

image.png
image.png

相關文章
相關標籤/搜索