Spring boot 파일업로드 OutOfMemoryError 고려사항
2024. 12. 26. 20:35ㆍJava/Spring Boot
작은 파일
public Map<String, Object> upload(@RequestParam("file") MultipartFile file) {
Path filePath = uploadPath.resolve(file.getOriginalFilename());
Files.write(filePath, file.getBytes());
큰 파일
public Map<String, Object> upload(@RequestParam("file") MultipartFile file) {
Path filePath = uploadPath.resolve(newFilename);
Files.copy(file.getInputStream(), filePath, StandardCopyOption.REPLACE_EXISTING);
'Java > Spring Boot' 카테고리의 다른 글
Spring boot 외부 디렉토리를 static으로 인식하기 (0) | 2024.12.27 |
---|---|
Spring boot 업로드 파일명 중복 피하기 (0) | 2024.12.26 |
Spring boot 업로드 디렉토리 설정하기 (0) | 2024.12.26 |
Spring boot Sencha 연동 파일 업로드 구성 (0) | 2024.12.26 |
Spring boot X-Frame-Options 처리 (0) | 2024.12.26 |