refactor: Swagger 스펙을 ControllerDocs 인터페이스로 분리 - #427
Merged
pooreumjung merged 7 commits intoJul 23, 2026
Conversation
Contributor
|
Caution The consumer version of Gemini Code Assist on GitHub has been sunset. All code review activity has officially ceased. |
2 tasks
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.
#️⃣ Issue Number
📝 요약(Summary)
@Operation/@ApiResponses/@Parameter(description=...)등 Swagger 문서 애너테이션을 각 컨트롤러 전용[ControllerName]Docs인터페이스로 분리했습니다.[ControllerName]Docs인터페이스는 각 도메인의presentation(또는controller) 패키지 하위docs서브패키지에 위치합니다. (예:domain/review/presentation/docs/ReviewControllerV2Docs.java)implements하고 메서드에@Override를 붙였습니다.@GetMapping등 매핑 애너테이션과@PathVariable/@RequestParam/@RequestBody등 파라미터 바인딩 애너테이션은 기존과 동일하게 컨트롤러에 그대로 유지했습니다(문서화 관련 애너테이션만 이동).💬 공유사항 to 리뷰어
./gradlew compileJava는 정상 통과✅ PR Checklist
PR이 다음 요구 사항을 충족하는지 확인하세요.