-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#77 DAILYLIFE2-25 팔로우 추가 및 파일 이미지 저장 경로 수정
- Loading branch information
1 parent
2f4f22f
commit 661ccec
Showing
8 changed files
with
34 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,4 @@ public class BoardCreateRequest { | |
|
||
private MultipartFile[] imageName; | ||
|
||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
src/main/java/com/dailylife/global/fileUpload/exception/NotExistFileException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.dailylife.global.fileUpload.exception; | ||
|
||
import com.dailylife.global.exception.ApplicationException; | ||
|
||
public class NotExistFileException extends ApplicationException { | ||
public NotExistFileException() { | ||
super(302, "파일이 존재하지 않습니다."); | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/main/java/com/dailylife/global/fileUpload/exception/NotFoundFileException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package com.dailylife.global.fileUpload.exception; | ||
|
||
import com.dailylife.global.exception.ApplicationException; | ||
|
||
public class NotFoundFileException extends ApplicationException { | ||
|
||
public NotFoundFileException() { | ||
super(301, "파일을 찾을수 없습니다."); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ public void initDB() throws IOException { | |
if(ddlAutoConfig.equals("create")){ | ||
|
||
UserJoinRequest userReq1 = UserJoinRequest.builder() | ||
.userId("d1") | ||
.userId("dl1") | ||
.userPassword("dl") | ||
.userName("dailyLife") | ||
.userEmail("[email protected]").userJoinDate(LocalDateTime.now()).build(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters