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,完美解决,我在菜鸟的路上真是越走越远!
在这里插入图片描述

Logo

为开发者提供学习成长、分享交流、生态实践、资源工具等服务,帮助开发者快速成长。

更多推荐