I try to upload multiple files with one request. My code looks like the following:
I had the same problem but with an input field for multiple itens.
The problem was solved using an array instead of a List, in the action parameters:
public static void overviewSubmit(File[] files){ System.out.println(files); }