-
Notifications
You must be signed in to change notification settings - Fork 1
Feature/97 봉사자 프로필 수정 #106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
- Problem Detail 사용.
- 닉네임과 소개 필드로 구성된 RequestDto와 ImgUrl로 프로필 업데이트 - Dto의 각 필드 유효한 값인지 검사
…tailProfileResponseDto에서 'detail'로 변경 - API 명세에 맞게 응답 값을 수정 - 내부 private record 이므로 과감한 네이밍 개선
leebs0521
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!!
| class VolunteerProfileCommandControllerTest extends ControllerTestSupport { | ||
|
|
||
| @Autowired | ||
| private MockMvc mockMvc; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
controllerTestSupport에 들어있어서 지우셔도 됩니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
넵! 감사합니다
ayoung-dev
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다!
- 상속받는 서포트 클래스에 존재하는 의존성 주입을 테스트 클래스에서 삭제
|



resolved:
📌 과제 설명
👩💻 요구 사항과 구현 내용
봉사자 업데이트 (domain, usecase-service, controller)
build(gradle): validation 의존성 추가spring-boot-starter-validation을 추가하였습니다.feat(GlobalExceptionHandler): 유효성 예외를 전역 예외 핸들러로 처리MethodArgumentNotValidException발생 시 사용자에게 명확한 오류 메시지를 제공하도록GlobalExceptionHandler를 수정하였습니다. 일관성을 위해서 기존의 상속 구조를 포기했습니다.Volunteer 패키지 내의 명확하지 않은 클래스들 Rename.
✅ PR 포인트 & 궁금한 점