❌ 에러 메세지
org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation
✔ 해결 방법
Getter를 지정해줘야 한다. 핸들러가 클라이언트의 요청을 Type형식으로 응답하지 않아 발생하는 에러였다.
기존 코드
@Builder
public class SignupResponse {
private String msg;
}
변경된 코드
@Builder
@Getter
public class SignupResponse {
private String msg;
}
댓글