Spring Boot中HTTP请求参数转换和请求体JSON反序列化的区别
问题假设如下方法和对象Operation(summary "新增或修改标签信息")
PostMapping("saveOrUpdate")
public Result saveOrUpdateLabel(RequestBody LabelInfo labelInfo) {service.saveOrUpdate(labelInfo);return Result.ok();
}Schema(description "…
2026/7/1 2:44:41