-
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
Feat/#19 리뷰 관리 기능 구현 #33
The head ref may contain hidden characters: "Feat/#19_\uB9AC\uBDF0_\uAD00\uB9AC_\uAE30\uB2A5_\uAD6C\uD604"
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생하셨습니다~
코멘트 확인부탁드립니다 ㅎ
src/main/java/com/example/parking/domain/review/PrivateImageStorage.java
Outdated
Show resolved
Hide resolved
src/test/java/com/example/parking/application/review/ReviewServiceTest.java
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생하셨어요 건호형 커멘트 남겼으니 확인부탁드려요 ㅎㅅㅎ
@ManyToOne(fetch = FetchType.LAZY) | ||
@JoinColumn(name = "parking_id", nullable = false) | ||
private Parking parking; | ||
|
||
@ManyToOne(fetch = FetchType.LAZY) | ||
@JoinColumn(name = "reviewer_id", nullable = false) | ||
private Member reviewer; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
리뷰가 Parking
과 reviewer
자체를 알아야 할 필요가 있을까요 ?
id
만 갖고있어도 될 것 같은데, 너무 커플링이 되어있는것같아서 여쭙습니다..!
src/test/java/com/example/parking/application/review/ReviewServiceTest.java
Outdated
Show resolved
Hide resolved
|
# Conflicts: # .gitignore # src/main/java/com/example/parking/domain/member/MemberRepository.java # src/main/java/com/example/parking/domain/parking/Parking.java # src/main/resources/application.properties # src/test/java/com/example/parking/auth/MemberSessionRepositoryTest.java
Test Results115 tests 115 ✅ 2s ⏱️ Results for commit de1386e. |
* feat: 즐겨찾기 엔티티 생성 * feat: 컴파일 에러 수정 * feat: 즐겨찾기 Repository 구현 * feat: 즐겨찾기 dto 구현 * feat: 즐겨찾기 service 구현 * feat: 즐겨찾기 controller 구현 * feat: memberId, parkingId 값 객체 생성 * Create ci.yml * fix: 없어진 괄호 수정 * fix: 테스트용 설정 파일 추가 * Update ci.yml PR 코멘트는 pr일때만 보내도록 변경 * Update ci.yml * Update ci.yml * Update ci.yml * Update ci.yml * Feat/#19 리뷰 관리 기능 구현 (#33) * Refactor: DB <-> Application 간 데이터 변환하는 컨버터 위치 수정 * feat: 이미지 저장할 패키지 추가 * fix: 오류나는 패키지 구조 변경 * feat: 리뷰에서 선택할 수 있는 글 생성 * feat: 이미지 저장하는 기능 구현 * feat: 리뷰 작성하는 기능 구현 * feat: 리뷰 컨트롤러 작성(테스트용) * test: mysql 도 돌릴 수 있도록 수정 * gitignroe 추가 * properties 추가 * test: 안쓰는 어노테이션 제거 * refactor: 이미지 제거 * refactor: 연관관계 ID 참조로 변경 * feat: 주차장 조회 기능 구현 * refactor: 패키지명 변경 common -> support * refactor: 기본 생성자 접근자 변경 * refactor: Convert 어노테이션 필드에 붙이도록 변경 * refactor: createdAt 필드 변경 * ci test * ci test2 * refactor: 이미지 관련 파일 삭제 * fix: conflict 해결 * feat: 즐겨찾기 엔티티 생성 * feat: 컴파일 에러 수정 * feat: 즐겨찾기 Repository 구현 * feat: 즐겨찾기 dto 구현 * feat: 즐겨찾기 service 구현 * feat: 즐겨찾기 controller 구현 * feat: memberId, parkingId 값 객체 생성 * feat: api 스펙 변경 * feat: association 적용 --------- Co-authored-by: LeeGeonHo <zx00018@naver.com>
👍관련 이슈
🤔세부 내용
todo
🫵리뷰 중점사항
MemberRepository
Fake 객체 만든다고JpaRepository
에서Repository
로 변경했는데 괜찮을까여?