How can we send list of files by RESTEasy java client? Spring REST is:
@PostMapping()
public ResponseEntity<?> send(@RequestPart(value = "message") String message, @RequestPart(value = "attachment", required = false) List<MultipartFile> attachments)
In Postman it is made by specifying multiple files in form-data with one key "attachment", but MultipartFormDataOutput has Map inside, so it remembers only the last added file.