IT/Java
[Spring] Cassandra CodecNotFoundException: Codec not found for requested operation: [timestamp <-> java.sql.Timestamp] 해결
yeTi
2018. 8. 30. 10:12
안녕하세요. yeTi입니다.
오늘은 Java에서 Datastax 라이브러리의 Object Mapper를 활용하여 Cassandra의 Timestamp를 추가시 발생하는 CodecNotFoundException을 해결하는 방법을 알아보겠습니다.
설치 환경
- Spring Boot : 1.5.4.RELEASE
- Cassandra Driver : cassandra-driver-core-3.5.1
1. Object Mapper를 활용했습니다.
- java.sql.Timestamp로 선언했던 변수를 java.util.Date로 변경합니다.