fix: 파일업로드 경로 조정

dev
minuk926 3 years ago
parent 3a9886f86d
commit 00d313ecdd

@ -42,7 +42,7 @@ public class CmmFileService implements ICmmFileService {
String makePath = "";
if(files != null && files.length > 0){
makePath = File.separator + DateUtil.getToday("");
//makePath = File.separator + DateUtil.getToday("");
// 파일 경로 : upload root 제외
String urlPath = uploadPath + makePath;
@ -64,10 +64,10 @@ public class CmmFileService implements ICmmFileService {
//Files.copy(multipartFile.getInputStream(), copyOfLocation, StandardCopyOption.REPLACE_EXISTING);
} catch (IOException e) {
String errMsg = String.format("File Upload Error :: %s", orgFileName);
String errMsg = String.format("File Upload Error :: %s[ %s ]", e.getLocalizedMessage(), orgFileName);
//TODO : 에러처리
//return RestError.of(String.format("File Upload Error :: %s", orgFileName));
AssertUtils.isTrue(false, String.format("File Upload Error :: %s", orgFileName));
AssertUtils.isTrue(false, errMsg);
}
}
}

@ -70,9 +70,10 @@ public class CtgyFileService implements ICtgyFileService {
public List<MinInfoBoard680> saveFiles(@Nonnull MinInfoBoard680Dto dto) {
List<MinInfoBoard680> entityList = new ArrayList<>();
MultipartFile[] files = dto.getFiles();
String makePath = "";
if(files != null && files.length > 0){
String makePath = File.separator + DateUtil.getToday("");
//makePath = File.separator + DateUtil.getToday("");
// 파일 경로 : upload root 제외
String urlPath = this.uploadPath + makePath;

Loading…
Cancel
Save