Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 기본생성자
- CRUD
- 코드업
- DTO
- HashSet
- 부트캠프
- lv1
- Python
- 파이썬
- HTML
- 자바
- @builder
- 에러
- java
- @NoArgsConstructor
- 브랜치
- 부스트코스
- github
- git
- 캡슐화
- stringbuffer
- 프로그래머스
- Codeup
- @AllArgsConstructor
- SQL
- 상속
- html tag
- 알고리즘
- 깃허브
- entity
Archives
- Today
- Total
잉?
Resolved [org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Cannot construct instance of `` (although at least one Creator exists): cannot deserialize from Object value (no delegate- or property-based Creator)] 본문
에러메시지,에러해결
Resolved [org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Cannot construct instance of `` (although at least one Creator exists): cannot deserialize from Object value (no delegate- or property-based Creator)]
Jye_647 2023. 7. 6. 16:11
dto클래스에서 comment를 생성하는데 오류가 발생했다.
이 오류를 자세히 들여다보자.
Resolved [org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Cannot construct instance of `` (although at least one Creator exists): cannot deserialize from Object value (no delegate- or property-based Creator)]
❓ 하나 이상의 creator가 존재하지만 Object 값을 역직렬화할 수 없다는 오류가 발생했다.
🔎 그 이유는 Jackson library가 역직렬화할 때 기본 생성자를 필요로 하는데 기본 생성자가 없기에 오류가 난 것이다.
Jackson library는 Java 객체를 JSON 형식으로 직렬화하거나 JSON을 Java 객체로 역직렬화하는 데 사용되는 자바 라이브러리이다. 이 라이브러리는 높은 성능과 유연성을 제공하여 JSON 데이터와 Java 객체 간의 변환 작업을 쉽게 처리할 수 있도록 도와준다.
💡 @NoArgsConstructor를 추가해 줬다.
'에러메시지,에러해결' 카테고리의 다른 글
인텔리제이 SpringBoot 실행 시 Task :test 에러 해결 (0) | 2023.06.15 |
---|---|
Port 8080 was already in use. + 8080 포트 죽이기(강제 종료) (0) | 2023.06.12 |
NumberFormatException 에러 해결 (0) | 2023.06.01 |
Exception in thread "main" java.lang.StackOverflowError 해결 + 상호 참조 (0) | 2023.05.31 |
Uncaught (in promise) SyntaxError: Unexpected token '<', "<!DOCTYPE "... is not valid JSON 해결법 + JSON이란? (1) | 2023.05.18 |
Comments