Spring boot multipart/related mime type support
I need to consume a request whose content-type is multipart/related. Request will consist of image, json payload and binary content. I tried to find some example on how to handle such request in a Spring boot application, I found some references on how to handle multipart/form-data request but nothing related to multipart/related mime type. Request is something like this: POST /upload Content-Type: multipart/related; boundary="123asdf234" --123asdf234 Content-Type: application/json; charset=UTF-8 Content-Disposition: form-data { "json": "payload" } —-123asdf234 Content-Type: application/zip