개발자 노트

[spring] HashMap No converter errror 본문

Web

[spring] HashMap No converter errror

jurogrammer 2020. 4. 24. 12:38

에러 문구:

더보기

No converter found for return value of type: class java.util.HashMap

    <dependency>
	    <groupId>com.fasterxml.jackson.core</groupId>
	    <artifactId>jackson-core</artifactId>
	    <version>2.9.2</version>
	</dependency>

위dependency를 추가했음에도 HashMap을 jason으로 바꿀 converter가 없다고 한다.

 

해결방법:

참고 링크 : https://mine-it-record.tistory.com/3

 

[SPRING] No converter found for return value of type: class java.util.HashMap(변환 에러)

No converter found for return value of type: class java.util.HashMap 와 같은 에러가 떠있다 구글링해보니 변환을 시키지 못하는거였다. 국비지원 교육을 받았을 당시에는 1 2 3 4 5 6 <depe..< p=""> </depe..<>

mine-it-record.tistory.com

위 링크대로 아래 dependency를 입력하니 잘 된다.

<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-databind</artifactId>
    <version>2.9.2</version>
</dependency>
반응형
Comments