-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BE] ✨ : spot 테이블 변경 및 관련 비지니스 로직 수정 #370
Merged
twoo1999
merged 14 commits into
BE/stroy/v2-modify-spot-table
from
BE/task/v2-create-photo_table-and-modift-logic
Feb 18, 2024
Merged
[BE] ✨ : spot 테이블 변경 및 관련 비지니스 로직 수정 #370
twoo1999
merged 14 commits into
BE/stroy/v2-modify-spot-table
from
BE/task/v2-create-photo_table-and-modift-logic
Feb 18, 2024
Conversation
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
spotSong(Nullable) 추가
photo table 분리에 따른 photo 데이터 저장 dto 생성
repository 방식 변경 custom repository 사용 안함 user save 로직 수정 기존 user가 있는지 확인 후 있으면 예외처리 없으면 그대로 저장
journeyV2, spotV2, photo entity 추가 및 custom repository 사용 안함
인터셉터를 활용한 여러개의 파일 저장 로직 생성 custom repository 사용 안함
spot 저장 router 변경에 따른 비지니스 로직 이동 (POST /spot -> POST /journey/:journeyId/spot) custom repository 사용 안함
기존 : linestring 자체의 길이를 측정하는 문제가 발생 해결 : ','로 나눈 배열의 길이를 측정하는 것으로 위치 좌표 수를 측정
기존 : get을 했을 때 에러가 발생 spot의 photo를 따로 나눈는 과정에서 변경사항을 조회 알고리즘에 적용하지 않아 dto로 parse하는 과정에서 key가 없다는 에러가 발생 해결 : typeorm의 relations 기능을 통해 journey와 spot 또 spot과 photo를 연결한 데이터를 출력하고 응답 dto에 맞게 변환해주는 함수를 수정
기존 : spot의 photo가 분리됨에 따른 변경사항이 비지니스 로직에 미적용 문제 발생 수정 후 : 조회 시 join을 spot과 photo까지 연결하여 전체 데이터를 불러올 수 있도록 수정
console.log 제거
11 tasks
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
❗ 배경
🔧 작업 내역
📝 리뷰 노트
spot 테이블에서 photo 데이터 분리 및 photo 저장
문제발생 :
spot 테이블에서 photo 테이블을 분리해 1대다 연결관계를 지정했습니다.
이러한 과정에서 기존 spot 테이블의 photo를 nullable로 변경하여 이전 버전의 service에서도 동일한 동작을 할 수 있도록 수정했습니다.
📸 스크린샷