SpringBoot报错:org.springframework.http.converter.HttpMessageNotReadableException
org.springframework.http.converter.HttpMessageNotReadableException:
Required request body is missing: * * * * *
at.org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.readWithMessageConverters(RequestResponseBodyMethodProcessor.java:161)
:
仔细排查之后发现我的其他代码都没有错误,最后是这个参数提交方式错误,因为@RequestBody
注解主要用于POST、PUT
方法中接受JSON
数据,所以此处应该使用@PostMapping
,Ok,完美解决,我在菜鸟的路上真是越走越远!