Skip to content
Advertisement

Spring MVC POST request with dto that contains multipart files and other dtos

I have a DTO that contains other DTOs and a list of multipart files. I am trying to process that DTO but I can’t seem to be able to read the requst.

JavaScript

When creating an example request from Swagger UI, I get the following exception:

JavaScript

If I put @RequestBody instead of @ModelAttribute then I get

JavaScript

Swagger dependencies:

JavaScript

OpenAPI3.0 config:

JavaScript

Advertisement

Answer

This seems to be an issue with how the springdoc-openapi-ui builds the form-data request. I was able to reproduce this and noticed that it sends a multipart-request like (intercepted through browser’s dev-tools):

JavaScript

With that payload Spring is not able to deserialize the specializationDto, resulting in the “no matching editors or conversion strategy found” exception that you’ve observed. However, if you send the request through postman or curl with (note the dot-notation for the specializationDto object)

JavaScript

then Spring is able to parse it correctly. Here’s my rest-mapping that will log the following as expected:

JavaScript

I suggest you open a bug on their github page.

EDIT:

After OP opened a github ticket, here’s part of the author’s feedback:

[…] With spring, you can use @RequestPart spring annotation to describe the different parts, with the related encoding media type. Note that there is a limitation with the current swagger-ui implementation as the encoding attribute is not respected on the request.[…]

They also provided a possible workaround, which looks like this:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement