Conversation
ljy1348
approved these changes
Mar 24, 2026
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.
Related Issue
Key Changes
1. 애플 로그인 탈퇴 시 Client Secret(JWT) 생성 오류 수정
서브 모듈 구조로 전환되면서 리소스 참조 방식이 변경되었으나, 기존 탈퇴 로직이 ClassPathResource를 사용하는 구버전 상태로 남아있어 Private Key(.p8) 파일을 찾지 못하는 문제를 확인했습니다.
ResourceLoader를 주입받아 file: 프리픽스를 사용하는 방식으로 수정하여, 설정된 외부 경로의 키 파일을 정상적으로 로드하도록 개선했습니다.
2. 코드 수정 내역
기존: new ClassPathResource(keyPath)를 통해 클래스패스 내부 탐색
변경: resourceLoader.getResource("file:" + keyPath)를 통해 실제 파일 시스템 경로 탐색
To Reviewers
References