Cassandra Accessor / Mapper not mapping udt field
问题 I am using datastax cassandra 3.1.2. I have created the following table in cassandra and inserted a record. CREATE TYPE memory ( capacity text ); create TABLE laptop ( id uuid primary key, model text, ram frozen<memory> ); select * from laptop ; id | model | ram --------------------------------------+---------------+------------------- e55cba2b-0847-40d5-ad56-ae97e793dc3e | Dell Latitude | {capacity: '8gb'} When I am trying to fetch the capacity field from frozen type memory in Java using