Conversation
errorResponse.getMessage()만 직렬화하여 문자열만 반환되던 문제를 errorResponse 전체 객체를 직렬화하도록 수정
MissingServletRequestParameterException 핸들러가 없어서 파라미터 누락 시 Security 에러 핸들러로 빠지던 문제 수정
익명 사용자(anonymousUser)가 isAuthenticated()=true로 통과하여 UserNotFoundException(404)이 발생하던 문제를 UNAUTHORIZED_ERROR(401)로 처리하도록 수정
매 요청마다 new ObjectMapper() 생성하던 오버헤드를 제거하고 Spring Bean으로 주입받도록 수정
Joonseok-Lee
requested review from
Joonseok-Lee and
LgE02
and removed request for
Joonseok-Lee
April 8, 2026 08:52
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.
🔎 관련 이슈
📋 작업 내용
GET /api/fairytales/my— 내 동화 목록 (섬별 필터링, 페이지네이션)GET /api/fairytales/shared— 공유 동화 목록 (본인 제외, 섬별 필터링)GET /api/fairytales/{fairytaleId}— 동화 상세 조회 (공개 API, permitAll)💡 알림
GET /api/fairytales/{fairytaleId})는 인증 없이 접근 가능 (SecurityConfig permitAll)✅ 체크리스트
./gradlew build -x test)엔드포인트체크Http Method체크📸 스크린샷
내 동화 목록 조회 (FANTASY)
노션 참고