MultipartFile
-
[SPRING] MultipartFile 파일업로드 없을 경우JAVA/SPRING 2019. 8. 21. 10:06
-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()) { ... } }