swagger2如何测试单个文件或者多文件上传(springboot)
All rights reserved.No part of this article may be reproduced or distributed by any means,or stored in a database or retrieval system,without the prior written permission of persistenceGoing author
https://blog.****.net/persistencegoing/article/details/84376427
单个文件
@ApiOperation(value = "上传视频接口",notes = "上传视频接口") @ApiImplicitParams({ @ApiImplicitParam(name = "file",value = "单个文件,",paramType = "formData",required = true,dataType = "file"), @ApiImplicitParam(name = "uId",value = "上传用户ID,",paramType = "query",required = true,dataType = "int") }) @PostMapping(value = "/video/uplode", headers = "content-type=multipart/form-data") public ResponseJsonCode uplode(HttpServletRequest request,@RequestParam(value = "uId", required = true) String uId, @RequestParam(value = "file", required = true) MultipartFile file) { Map<String,Object> dataMap = new HashMap<String,Object>(); path+=uId+"/"; log.info("file:"+file.length+";uId:"+uId+": path:"+path); List<Map<String,Object>> list = IOUtil.appMvcUpload(path, file, request,dataMap); return null==list.get(0).get("error")?ResponseJsonCode.successRequestJsonCode(list):ResponseJsonCode.errorRequestJsonCode(list); }
至于多文件的我想swagger应该不支持吧,反正我是没研究出来。。
多文件(用postman测试)
@ApiOperation(value = "文件上传",notes = "文件上传") @ApiImplicitParams({ @ApiImplicitParam(name = "files",value = "多个文件,",paramType = "formData",allowMultiple=true,required = true,dataType = "file"), @ApiImplicitParam(name = "uId",value = "上传用户ID,",paramType = "query",required = true,dataType = "int") }) @PostMapping(value = "/uplode", headers = "content-type=multipart/form-data") public ResponseJsonCode uplode(HttpServletRequest request,@RequestParam(value = "uId", required = true) String uId, @RequestParam(value = "files", required = true) MultipartFile[] files) { Map<String,Object> dataMap = new HashMap<String,Object>(); path+=uId+"/"; log.info("files:"+files.length+";uId:"+uId+": path:"+path); List<Map<String,Object>> list = IOUtil.appMvcUpload(path, files, request,dataMap); return null==list.get(0).get("error")?ResponseJsonCode.successRequestJsonCode(list):ResponseJsonCode.errorRequestJsonCode(list); }
希望大家关注我一波,防止以后迷路,有需要的可以加群讨论互相学习java ,学习路线探讨,经验分享与java求职 群号:721515304