需求:后端需要同时接收文件及对象,或者需要接收多个对象
实现方法:后端使用@RequestPart接收
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();
}
}
Postman设置