728x90
반응형
공부하던 중에 이러한 에러가 일어났다.
Java 8 date/time type `java.time.LocalDateTime` not supported by default: add Module "com.fasterxml.jackson.datatype:jackson-datatype-jsr310" to enable handling
참고블로그
위의 블로그를 참고하여 오류를 해결했다.
수정 전
String boardJson = new ObjectMapper().writeValueAsString(board);
수정 후
String boardJson = new ObjectMapper().registerModule(new JavaTimeModule()).writeValueAsString(board);
728x90
반응형
'1.프로그래밍 > Java' 카테고리의 다른 글
[Spring Boot] Thymeleaf 란? 타임리프 문법 정리 (1) | 2021.11.21 |
---|---|
[Spring Boot] Annotation 정리 - 2 (0) | 2021.11.21 |
[Spring Boot] Annotation 정리 - 1 (0) | 2021.11.18 |
[Spring boot] Entity에 대하여 (0) | 2021.11.16 |
[Java] DAO, DTO, VO 개념과 차이 (1) | 2021.11.16 |