How can I ensure CassandraOperations.selectOneById() initializes all fields in the POJO?
I'm using Spring Data Cassandra 1.3.4.RELEASE to persist instances of a class that I have. The class is written in Groovy, but I don't think that really matters. I have implemented a CrudRepository, and I'm injecting an instance of CassandraOperations into the repo implementation class. I can insert, delete, and do most of the other operations successfully. However, there's a scenario I'm running into which breaks my test case. My entity class looks something like this: @Table("foo") class FooData { @PrimaryKey("id") long id @Column("created") long updated @Column("name") String name @Column(