spring-data で enum 型を cassandra の int フィールドに変換しようとしていますが、次の例外が発生します。
Unexpected runtime exception java.lang.IllegalArgumentException:
Value 2 of type class com.twc.atg.td.dbo.client.ClassCode does not correspond to any CQL3 type
ここに私が使用しているコードがあります:
@Enumerated(EnumType.ORDINAL)
@Column("class_code")
public ClassCode classCode;