Home > Blockchain >  AWS S3 with Java – Reactive
AWS S3 with Java – Reactive

Time:10-29

I want to upload multipart file like here Postman

What could be the problem?

CodePudding user response:

Can you pass Content-Type: multipart/form-data in Headers like this and try again?

enter image description here

CodePudding user response:

Change @RequestBody Flux<Part> parts to @RequestPart("file") Flux<FilePart> parts fix all of this

  • Related