I want to upload multipart file like here
What could be the problem?
CodePudding user response:
Can you pass Content-Type: multipart/form-data in Headers like this and try again?
CodePudding user response:
Change @RequestBody Flux<Part> parts
to @RequestPart("file") Flux<FilePart> parts
fix all of this