I want to write api using Spring boot Multipart file upload as part of json body and also want to save img url in database. Requests that look like this:
------WebKitFormBoundarynBsAcX7rJhOGsmfY
Content-Disposition: form-data; name="fdata"; filename="blob"
Content-Type: application/json
{"firstname":"saurabh","lastname":"mishra","mobile":"943847557"}
------WebKitFormBoundarynBsAcX7rJhOGsmfY
Content-Disposition: form-data; name="files"; filename="download.jpg"
Content-Type: image/jpeg
------WebKitFormBoundarynBsAcX7rJhOGsmfY--
Please help me to find the solution.
