Feature/jira kan 69 카드 결제 성능 체크#83
Merged
Conversation
# Conflicts: # build.gradle # src/main/java/bumblebee/xchangepass/domain/user/entity/User.java # src/main/java/bumblebee/xchangepass/domain/user/repository/UserRepository.java # src/main/java/bumblebee/xchangepass/global/security/jwt/JwtAuthFilter.java # src/main/java/bumblebee/xchangepass/global/security/jwt/JwtUtil.java # src/test/java/bumblebee/xchangepass/domain/ExchangeTransaction/service/ExchangeTransactionServiceTest.java
3 tasks
usingjun
reviewed
Apr 7, 2025
| @OneToMany(mappedBy = "user", orphanRemoval = true, cascade = CascadeType.ALL) | ||
| private List<ExchangeTransaction> exchangeTransactions; | ||
|
|
||
| @OneToMany(mappedBy = "user", orphanRemoval = true, cascade = CascadeType.ALL) |
Collaborator
There was a problem hiding this comment.
왜 User와 카드 거래내역을 연결시켰나요?
ERD상과 다르지않나요?
Collaborator
Author
There was a problem hiding this comment.
다시 확인해본 결과 ERD와 똑같이 구성되어있는 것 같습니다!
This file contains hidden or 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
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.
🛠️ 과제 요약
📝 요구 사항과 구현 내용
📌 카드 기능
카드 CRUD 기능 구현 (생성, 조회, 수정, 삭제)
카드 상태 변경 및 만료일 설정
실물 카드 1회 발급 제한 로직 추가
👤 유저, 카드, 지갑 연관 관계
Card ↔ Wallet (ManyToOne)
Wallet ↔ User (FetchType.EAGER)
💳 카드 결제 요청 기능
카드 결제 요청 API 구현 (Service, Controller, DTO, Entity)
보안 설정(SecurityConfig) 연동 완료
📈 카드 거래내역 기능
카드 결제 내역 Entity 및 DTO, Repository, Service, Controller 구현
무한스크롤 페이징을 위한 구조 설계 및 거래내역 비동기 생성
✅ 피드백 반영사항
💬 PR 포인트 & 궁금한 점
🔗 연관된 이슈