직인,로고,고지서배경 이미지 저장경로 변경

main
이범준 7 months ago
parent e4ec93bde8
commit 23790c8029

@ -156,7 +156,7 @@ public class StngController extends ApplicationController {
ManagedUser currentUser = (ManagedUser) currentUser().getUser();
String sggCd = currentUser.getOrgID();
String bgPath = "files/background/"+sggCd;
String bgPath = "files/etc/background/"+sggCd;
String ext = FilenameUtils.getExtension(backgroundFile.getOriginalFilename());
String fileName = otptForm.getTaskSeCd()+"-"+otptForm.getSndngSeCd()+"-"+otptForm.getPaperSeCd()+"."+ext;

@ -178,7 +178,7 @@ public class Mngt03Controller extends ApplicationController {
private Map<String, String> uploadForSgg(MultipartFile mf, String sggCd, String fileSe){
Map<String,String> newFileInfoMap = new HashMap<>();
String workDirPath = "files/"+fileSe;
String workDirPath = "files/etc/"+fileSe;
String ext = FilenameUtils.getExtension(mf.getOriginalFilename());
String fileName = sggCd+"."+ext;
@ -192,13 +192,13 @@ public class Mngt03Controller extends ApplicationController {
File newFile = new File(newFileFullPath);
if(newFile.exists()) {
if(!newFile.delete()) {
throw new RuntimeException("[F]배경 이미지 업로드 중 오류가 발생하였습니다.");
throw new RuntimeException("[F]이미지 업로드 중 오류가 발생하였습니다.");
}
}
mf.transferTo(newFile);
} catch (Exception e) {
throw new RuntimeException("[F]배경 이미지 업로드 중 오류가 발생하였습니다.");
throw new RuntimeException("[F]이미지 업로드 중 오류가 발생하였습니다.");
}
newFileInfoMap.put("filePath", newFileFullPath);

Loading…
Cancel
Save