Postman同时发送多个对象+文件到Controller的实现方法

需求:后端需要同时接收文件及对象,或者需要接收多个对象

实现方法:后端使用@RequestPart接收

  1. 实体类
@Data
public class Child {
   private String name;
   private Integer age;
   private List<Integer> list;
}
  1. Controller
@Slf4j
@RequestMapping("/postman")
@RestController
public class PostmanParam {
 @PostMapping(value = "twoGirlfriendsAndFile")
    public String postman4(@RequestPart("file") MultipartFile file,
    					   @RequestPart("child1") Child child1,
    					   @RequestPart("child2")Child child2){
    	if(file != null){
            log.error("接收到文件");
        }
        return child1.toString()+child2.toString();
    }
}
  1. Postman设置
    选择body ---- form-data —添加隐藏的content type列表
    Postman同时发送多个对象+文件到Controller的实现方法_第1张图片
    Postman同时发送多个对象+文件到Controller的实现方法_第2张图片
    再看一下文件是否正确传入到后端:
    在这里插入图片描述

你可能感兴趣的:(工具使用,springboot,postman,测试工具)