본문 바로가기

개발/02.Spring

[Springboot] No converter found for return value of type 오류

배경 :
1. Wrapper 클래스를 이용하여, 데이터 저장시, validation 체크로직에 대한 메세지를 화면 alert창으로 뿌려주기 위한 작업간 발생.

2.  @ResponseBody 사용해서 객체를 json으로 반환할 때 No converter found for return value of type 오류

원인 : 생성자만 생성, getter setter 미생성 사유

 

내용 : 

@Getter  <-- 추가

@Setter  <-- 추가

@AllArgsConstructor

@NoArgsConstructor

public class ResultWrapper<T> {

    String code;

    String msg;

    T data;

    

...

 

}

 

참고 : https://shinsunyoung.tistory.com/55

 

 

728x90