Conversation
- RefreshToken 엔티티에 revoked/revokedAt 필드 추가 - SELECT FOR UPDATE 기반 동시성 제어 (먼저 잡은 요청이 임자) - revoked 토큰 재사용 감지 시 해당 유저 전체 토큰 무효화 - 스케줄러 90일 보관 정책 외부 주입 (application.yml) - RefreshTokenServiceTest 단위 테스트 7개 추가
refresh token soft delete 및 재사용 감지 구현
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.
Summary
RefreshToken엔티티에revoked/revokedAt필드 추가 (soft delete 전환)SELECT FOR UPDATE기반 동시성 제어 — 동시 rotation 경쟁 시 먼저 잡은 요청이 임자application.yml로 외부 주입RefreshTokenServiceTest단위 테스트 7개 추가DB Migration
backend/db/migrations/V004__add_refresh_token_revoke.sql수동 적용 필요:Test plan
ddl-auto: validate)