MissingServletRequestParameterException: Required String parameter 'xxx' is not present

我遇到這個問題的主要原因是在controller裏面用的@RequestParam標籤接收,但在postman裏面寫的是Body裏面,如圖 @RequestParam接收的是請求參數,不是接收請求頭的body裏面的參數的,所以這樣寫是接收不到的,如果要接收到這個參數需要用@RequestBody這個註解,,然後controller裏面可以用map接收參數,如圖 ,如果參數是一個列表的話可以用Lis
相關文章
相關標籤/搜索