Array Multipart[] file upload using Feign client
问题 I am trying to upload Array of Multipart file object using feign client. This is the service am trying to call using Feign client. public ResponseEntity<Object> manageFileUpload(@RequestParam("files") MultipartFile[] files) I tried using,Feign client Annotation, @FeignClient(value = "UPLOADUTILITIES", configuration = Upload.MultipartSupportConfig.class, fallback = UploadFallback.class) My Method, @RequestMapping(name = "upload", value = "/object", method = RequestMethod.POST) @Headers(