### For Single File
POST http://localhost:8080/upload
Content-Type: multipart/form-data; boundary=—-WebKitFormBoundary7MA4YWxkTrZu0gW
——WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name=”file”; filename=”file.jpeg”
Content-Type: image/jpeg
< C:/Users/user/Pictures/file.jpeg
——WebKitFormBoundary7MA4YWxkTrZu0gW–
### For Multiple FIle
POST http://localhost:8080/upload
Content-Type: multipart/form-data; boundary=—-WebKitFormBoundary7MA4YWxkTrZu0gW
——WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name=”files”; filename=”file.jpeg”
Content-Type: image/jpeg
< C:/Users/user/Pictures/file.jpeg
——WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name=”files”; filename=”file.jpg”
Content-Type: image/jpeg
< C:/Users/user/Pictures/file.jpg
——WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name=”files”; filename=”file.jpg”
Content-Type: image/jpeg
< “C:/Users/user/Pictures/file.jpg”
——WebKitFormBoundary7MA4YWxkTrZu0gW–