23번 강의 UserRegisterRequest 에러
2025.03.03 22:22 수정
현재 넷플릭스 구독 프로젝트 23번 강의에서 영상과 같이 컨트롤러와 request, response 를 모두 구성해 주고 프론트에서 회원가입을 진행해보면 프론트에서 에러가 나지 않는데 백에서 아래 에러가 발생합니다.
에러 문구
안보일까봐 코드로 추가해서 첨부해
@Getterpublic class UserRegisterRequest { private final String username; private final String password; private final String email; private final String phone; public UserRegisterRequest(String username, String password, String email, String phone) { this.username = username; this.password = password; this.email = email; this.phone = phone; }}