-
[SPRING] MultipartFile 파일업로드 없을 경우JAVA/SPRING 2019. 8. 21. 10:06728x90
-MultipartFile 의 메소드
String getName() : 파라미터 이름 리턴
String getOriginalFilename() : 업로드한 파일의 이름을 리턴
boolean isEmpty() : 업로드한 파일이 존재하지 않으면 true 리턴
long getSize() : 업로드한 파일의 크기를 리턴
isEmpty() 메소드를 사용해서 해결 가능
@RequestMapping(value="/review/{no}", method=RequestMethod.POST) public String reviewProcessing(MultipartFile file) throws Exception{ if(!file.isEmpty()) { ... } }
728x90'JAVA > SPRING' 카테고리의 다른 글
[Spring Boot] Spring Boot (1) - 개발환경 설정 (0) 2020.01.05 [SPRING] MAPPER 비교연산자 에러(The content of elements must consist of well-formed character data or markup) (0) 2019.08.29 [SPRING] resources 사용법 (0) 2019.08.10 [SPRING] 스프링 MODEL을 사용한 모델/뷰 처리 (0) 2019.07.12 [SPRING] MultiPart 빈 추가후 java.lang.NoClassDefFoundError: org/apache/commons/fileupload/FileItemFactory (0) 2019.07.06