entzik / reactive-spring-boot-examples

Apache License 2.0
30 stars 11 forks source link

Unsupported Media Type #1

Open ddduarte opened 5 years ago

ddduarte commented 5 years ago

Hi, I am getting an error when post file in my aplication.

{
"timestamp": "2019-03-12T19:20:39.108+0000",
"status": 415,
"error": "Unsupported Media Type",
"message": "Content type 'multipart/form-data;boundary=----WebKitFormBoundary3990uxUh72AZ1dJx;charset=UTF-8' not supported",
"path": "/upload"
}

My API

@PostMapping(
                consumes = MediaType.MULTIPART_FORM_DATA_VALUE, 
                produces = MediaType.APPLICATION_JSON_VALUE)
    @ResponseStatus(HttpStatus.CREATED)
    public Flux<String> post(@RequestBody Flux<Part> parts) {

Any idea what can cause this error?

I am using a tool to test, I suppose that tool is OK.

entzik commented 5 years ago

huh sorry I didn't run into that... that being said, I didn't look at this repo in a while. what's the tool you're using?