2022
02-28
02-28
springboot多文件上传实现使用postman测试多文件上传接口
使用postman测试多文件上传接口1、创建测试类(FileController.java)packagecom.jeff.controller;importjava.io.File;importjava.io.IOException;importjava.util.List;importorg.springframework.web.bind.annotation.PostMapping;importorg.springframework.web.bind.annotation.RequestParam;importorg.springframework.web.bind.annotation.RestController;importorg.springframework.web.multipart.MultipartFile;@R...
继续阅读 >