본문 바로가기
에러 모음집

SpringBoot Could not find acceptable representation(Error: Request failed with status code 406)

by snow_white 2023. 1. 8.
❌ 에러 메세지
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;
}

댓글