본문 바로가기

ERRORMESSAGE

[Spring Error] Java.lang.IllegalArgumentException No converter found for return value of type class

728x90

문제점 !

Controller에서 객체 반환시 Json으로 반환되지 않는 경우 

 

해결 !

pom.xml

<!-- Json 형변환 - dataType : 'JSON'인 경우 서버에서 JSON 객체를 리턴 -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.2</version>
</dependency>
728x90