YoTo Blog

Spring Boot 파일 업로드


Spring 파일 업로드

간략하게 파일 업로드 컨트롤과 서비스단을 만들어보자.


소스

Controller

컨트롤러 부분이다.
간략하게 form 객체로 받아서 boolean을 리턴해준다.

// 파일 업로드
@PostMapping("/file")
public boolean fileUpload(@RequestBody MultipartFile[] files) {
    return fileService.upload(files);
}

Service

실제로 파일이 저장되는 서비스 부분이다.
최대한 간략하게 정리했다.

// 업로드
public boolean upload(MultipartFile[] files) {
    private String filePath = "C:/tmp/file";
    for (MultipartFile file: files) {
        // 파일 이름 꺼내기
        String orginalName = file.getOriginalFilename();
        assert orginalName != null;
        String fileName = orginalName.substring(orginalName.lastIndexOf("\\") + 1);
 
        // 폴더 생성
        File uploadPathFolder = new File(path);
        if(!uploadPathFolder.exists()) {
           	uploadPathFolder.mkdirs();
        }
 
        // 고유 아이디 생성
        UUID uuid = UUID.randomUUID();
 
        // 저장될 파일 경로 지정
        String saveFileName String.format("%s__%s", uuid.toString(), FileName);
        String orgPathFile = String.format("%s%s%s", filePath, File.separator, saveFileName);
 
        Path savePath = Paths.get(orgPathFile);
 
        try {
            file.transferTo(savePath); // 실제 저장
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    return true;
}

예제

다른 예제

스프링 서버단 업로드
스프링 서버단 다운로드
클라이언트 자바스크립트 Fetch 업로드
클라이언트 자바스크립트 Fetch 다운로드