We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ProfileService.java의 save 메서드 내부에서 어떤 동작이 수행되고 있는지 확인해야 한다. 가능한 원인으로는 findById 메서드 호출 시 null이 전달되는 상황이 있는지 확인해야 한다.
ProfileService.java
findById
MemberRepository.java의 getById 메서드도 확인해야 한다. 해당 메서드에서 findById 메서드를 호출하는데, 여기서 null인 id 값을 전달하고 있지는 않은지 확인해야 한다.
MemberRepository.java
getById
클라이언트에서 프로필 등록 API를 호출할 때, 요청 파라미터로 유효한 id 값을 전달하고 있는지 확인해야 한다.
The text was updated successfully, but these errors were encountered:
devFancy
Successfully merging a pull request may close this issue.
작업 내용
확인할 사항들
ProfileService.java
의 save 메서드 내부에서 어떤 동작이 수행되고 있는지 확인해야 한다. 가능한 원인으로는findById
메서드 호출 시 null이 전달되는 상황이 있는지 확인해야 한다.MemberRepository.java
의getById
메서드도 확인해야 한다. 해당 메서드에서 findById 메서드를 호출하는데, 여기서 null인 id 값을 전달하고 있지는 않은지 확인해야 한다.클라이언트에서 프로필 등록 API를 호출할 때, 요청 파라미터로 유효한 id 값을 전달하고 있는지 확인해야 한다.
스크린샷
The text was updated successfully, but these errors were encountered: