前言
- RuoYi-Vue: v3.8.5
- swagger 1.6.2 (https://github.com/swagger-api/swagger-core, https://gitee.com/mirrors/swagger-core)
Swagger 上传接口定义
@ApiOperation(value = "图片上传")
@PostMapping(value = "/upload", headers="content-type=multipart/form-data")
public AjaxResult uploadFile(@RequestPart("file") MultipartFile file) throws Exception {
// do something
}
参考
【若依(ruoyi)】Swagger 上传接口
swagger 上传文件 参数_swagger 文件上传以及requestbody参数传递
swagger实现文件上传
java swagger上传文件配置