에러 일기

[SPRING] HV000151: A method overriding another method must not redefine the parameter constraint configuration, but method MemberServiceImpl#signup(SignupRequestDto) redefines the configuration of MemberService#signup(SignupRequestDto).

재원쓰 2023. 1. 18. 10:47

service 디렉토리에서 service 클래스 하나를 'service' 인터페이스와 'serviceImpl' 클래스로 나누었다.

이때 service 인터페이스에서 정의한 메서드를 serviceImpl 클래스에서 오버라이딩하여 구현하는 로직이다.

이때 service 인터페이스에 있는 메서드의 매개변수와 serviceImpl 클래스에 있는 메서드의 매개변수가 다를 때 발생하는 에러였다.