SpringBoot接收请求时,返回 415状态[Unsupported Media Type]

SpringBoot 做接口时,代码如下

file

请求接口时,报错如下:

file
file

解决:

在SpringBoot的Controller,使用 @RequestBody 接口参数时,只能处理Content-Type:application/json类型的数据
,而当前请求的Content-Type:application/x-www-form-urlencoded; charset=UTF-8,导致上面的报错。
要么修改前端请求的Content-Typeapplication/json
要么修改Controller的@RequestBody@RequestParam