如题:@ResponseBody 获取请求 body 报错:Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported.

这个问题主要是因为 @ResponseBody 需要对应 Content-type:application/json 格式,如果想要接受 form 表单,也就是 application/x-www-form-urlencoded 类型参数,后台可以使用 @RequestParam 来接受。