Проблема с отправкой 2-х мерного массива файлов - PullRequest
0 голосов
/ 25 сентября 2019

Я отправляю несколько файлов с formData вот так

enter image description here

В моем Spring MVC Controller

@PostMapping(value = "/marches")
public Integer saveMarches(
        @RequestPart("formJson") FooBean formJson, 
        @RequestPart("attachOs") MultipartFile[][] attachOs
        ) throws IOException {

    ...
}

Ноя получил 400 плохих запросов

Resolved [org.springframework.web.multipart.support.MissingServletRequestPartException: 
Required request part 'attachOs' is not present]
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...