Skip to content

Commit

Permalink
fix : logging
Browse files Browse the repository at this point in the history
  • Loading branch information
NameIsUser06 committed Dec 28, 2023
1 parent 2d14e2d commit 1553f65
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

import java.io.IOException;
import java.nio.file.*;
import java.util.Base64;
import java.util.UUID;

@Component
Expand All @@ -18,9 +19,8 @@ public class FileSaveUtil {

public String save(MultipartFile file) {
try {
System.out.println(file);
// 클라이언트에서 전송한 파일 이름 얻기
System.out.println(file.getOriginalFilename());

System.out.println(new String(Base64.getDecoder().decode(file.getBytes())));

// 파일 이름 생성 (UUID와 클라이언트에서 전송한 파일 이름 조합)
String fileName = UUID.randomUUID().toString().replace("-", "") + "_" + file.getOriginalFilename();
Expand Down

0 comments on commit 1553f65

Please sign in to comment.