Upload files to the @ModelAttribute using Thymeleaf
问题 How to upload files to the @ModelAttribute using Thymeleaf? I'am doing something that: upload.html <form method="POST" action="#" th:action="@{/sending}" th:object="${collage}" enctype="multipart/form-data" > <input type="file" th:field="*{picture}" /> <input type="file" th:field="*{picture}" /> <input type="submit" value="upload" /> </form> My controller: @Controller public class MainController { @GetMapping(value = { "/" }) public String index(){ return "upload"; } @GetMapping("/collage")