[Spring MVC] MultipartFile
MultipartFile - 파일 업로드시 사용하는 메소드 아규먼트 - MultipartResolver 빈이 설정되어 있어야 사용 가능 (Sringboot 기본 제공) - POST multipart/form-data 요청에 들어있는 파일을 참조할 수 있다. - List 아규먼트로 여러 파일을 참조 가능 package com.example.demo; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMappi..