Conversation
yukyoungs
requested review from
jihoonkim501,
sky-0131 and
yeonjuncho
as code owners
July 21, 2026 11:41
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughJPA Auditing이 기본 DateTimeProvider 대신 ChangesJPA Auditing 설정
Estimated code review effort: 2 (Simple) | ~10 minutes Suggested reviewers: 🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✨ Finishing Touches📝 Generate docstrings
Comment |
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.
#️⃣ 관련 이슈
closed #32
PR 유형
어떤 변경 사항이 있나요?
PR Checklist
PR이 다음 요구 사항을 충족하는지 확인하세요.
🧩 작업 내용
BaseEntity의createdAt,updatedAt이OffsetDateTime타입인데JpaConfig가 기본DateTimeProvider(LocalDateTime 기준)를 사용하고 있어 auditing 값이 의도대로 채워지지 않던 문제 수정JpaConfig에auditingDateTimeProvider빈을 추가해OffsetDateTime.now()를 직접 제공하도록 변경@EnableJpaAuditing(dateTimeProviderRef = "auditingDateTimeProvider")로 명시적 연결📸 스크린샷(선택)
📣 To Reviewers
feat/#30작업 중 발견한 무관한 버그라 별도 이슈([Fix] JPA Auditing OffsetDateTime 미적용 버그 수정 #32)/PR로 분리했습니다.Summary by CodeRabbit
OffsetDateTime형식으로 일관되게 기록되도록 개선했습니다.