[1주차] 강지훈/[feat] 초기 프로젝트 설정#9
Open
theSnackOverflow wants to merge 13 commits intoLeets-Official:강지훈/mainfrom
Hidden character warning
The head ref may contain hidden characters: "\uac15\uc9c0\ud6c8/1\uc8fc\ucc28"
Open
[1주차] 강지훈/[feat] 초기 프로젝트 설정#9theSnackOverflow wants to merge 13 commits intoLeets-Official:강지훈/mainfrom
theSnackOverflow wants to merge 13 commits intoLeets-Official:강지훈/mainfrom
Conversation
luke0408
reviewed
Mar 22, 2026
Collaborator
There was a problem hiding this comment.
우선 cluade와 같은 LLM을 사용하여 진행하고 익숙해지는 것은 너무 좋습니다.
다만, claude의 문서 중에서 어떤걸 공유하고, 어떤걸 공유하지 말지에 대한 걸 고민해보는 걸 추천드립니다! 아래의 저의 생각을 간단하게 공유 드릴테니, 보시기전에 "문서를 어떻게 분류할까"라는 생각을 해보시면 좋을 것 같아요.
개인적인 생각
제가 생각할 때에 문서는 다음과 같은 두 종류를 가집니다.
- SLM: 단기 기억
- LTM: 장기 기억
단기 기억이란 특정 문제를 해결하기 위한 문서(흔히 티켓 혹은 테스크)들을 이야기 하며 해당 작업이 끝나면 소비되어 사라져도 무방한 문서들을 이야기 합니다.
장기 기억이란 README 문서나, 아키텍쳐 문서 등 프로젝트 진행에 전반에 걸쳐서 지속적으로 관리되어야 할 문서를 이야기합니다.
즉, 작업 중에는 단기 기억이 생성되어 진행되고
작업이 끝나면 장기 기억을 업데이트 하여 공유하는
그런 방식으로 팀 문서가 관리되어야 한다고 생각하고 있어요.
그래서 위 같은 생각으로 이번 실습 프로젝트에서 .claude/ ignore 처리해주시면 어떨까 싶어요.
Member
Author
There was a problem hiding this comment.
리뷰 반영헀습니다!
VSC만 쓰다 IntelliJ 오랜만에 사용해보는데 아직 손에 안 익어서 어렵네요..
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.
1. 과제 요구사항 중 구현한 내용
GET /api/v1/health)POST /api/v1/strings/repeat)2. 핵심 변경 사항
HealthController:GET /api/v1/health엔드포인트 추가StringController+StringService:POST /api/v1/strings/repeat구현, Controller/Service 레이어 분리StringRequest/StringResponse: 요청·응답 DTO 분리,@JsonProperty로 스네이크 케이스 키 적용ApiResponse<T>: 공통 응답 포맷(status,message,data) 도입GlobalExceptionHandler:@Valid검증 실패 시 400 응답 처리/api/v1/접두사로 버전 구조 설계springdoc-openapi-starter-webmvc-ui)3. 실행 및 검증 결과
./gradlew bootRun후 정상 기동 확인 (port 8080)GET /api/v1/health응답:POST /api/v1/strings/repeat요청/응답:4. 완료 사항
5. 추가 사항
http://localhost:8080/swagger-ui/index.html제출 체크리스트
강지훈/main브랜치다강지훈/1주차브랜치다