반응형
서버에서 떨어지는 json을 model로 만들어 넣을려 하면 이런 에러가 발생할수도 있다...
com.fasterxml.jackson.databind.JsonMappingException: No suitable constructor found for type [simple type, class ...]: can not instantiate from JSON object (need to add/enable type information?)
이유는 정확하게 모르겠지만 생성자를 만들어주면 쉽게 해결이 된다...
ex)
public className(){
}
반응형
'프로그램 > Web' 카테고리의 다른 글
이클립스(eclipse) 설치 방법 (0) | 2017.09.08 |
---|---|
javax.el.PropertyNotFoundException (0) | 2016.09.20 |
웹상에서 자바 엑셀파일 다운로드 (0) | 2016.03.29 |
Parsing - 태그 사이 값 가져오는 파싱 (0) | 2016.03.29 |
Parsing - <>안 속성값 가져오는 파싱 (0) | 2016.03.23 |