Skip to content

Commit

Permalink
feat: path 절대 경로로 변경 (#72)
Browse files Browse the repository at this point in the history
* fix: data.sql 실행 기능 추가 및 category 소문자로 변경

* fix: name, image 소문자로 변경

* feat: 주문 거절시 거절 사유 입력 추가, restTemplate 요청 ip 주소 변경

* test: 거절 사유 추가 테스트 코드 반영

* fix: Path.of()로 상대경로 설정

* fix: 고객팀 정보 전송 기능 추가

* fix: one to one 연관관계 설정

* fix: 파일 절대 경로로 변경

* fix: 파일 절대 경로로 변경

---------

Co-authored-by: Choi Seongwon <[email protected]>
Co-authored-by: Seongwon Choi <[email protected]>
  • Loading branch information
3 people authored Sep 27, 2023
1 parent 583867d commit d6b5e3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/ray/pominowner/global/vo/FileSaver.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ private String extractFileExtension(String originalFilename) {

private void saveImageToPath(MultipartFile image, String path) {
try {
image.transferTo(Path.of(path));
image.transferTo(Path.of("/home/ubuntu/code/" + path));
} catch (IOException e) {
throw new RuntimeException("파일 저장에 실패했습니다.",e);
}
Expand Down

0 comments on commit d6b5e3e

Please sign in to comment.