req_body_type 形式有4种,分别是 form, json, file 和 raw
使用idea插件上传的接口, 默认都是 form表单的形式, 期望是json
后面才发现, 是因为只有一个参数使用@RequestBody导致的
public String test(@RequestBody User user, Shop shop)
改成都是@RequestBody的就好了
如:
public String test(@RequestBody User user, @RequestBody Shop shop)