Closed
Description
Assuming the following open api snippet for a request body:
requestBody:
required: true
content:
multipart/form-data:
schema:
type: object
properties:
file:
type: string
format: binary
other:
type: string
the generatr should create an additional query parameter for each property of the schema object instead of a @ReqeustBody
parameter, in this case
@RequestParam(name = "file") MultipartFile file,
@RequestParam(name = "other") String other