问题描述
使用 postman 传递 raw 参数错误:
org.springframework.web.bind.MissingServletRequestParameterException: Required Integer parameter ‘xxx’ is not present
问题分析
端上传来的 content-type 对应的值为 application/json:

导致:

问题解决
端上将 content-type 修改为 application/x-www-form-urlencoded:

body 参数就会自动变为 x-www-form-urlencoded:
