标签: spring spring-boot cassandra spring-data-cassandra
使用Spring数据从Casssandra POjo类创建表Cassandra是否有任何标记来创建表定义
答案 0 :(得分:1)
只需使用 org.springframework.data.cassandra.core.mapping.Table 中的注释 @Table ,并使用 @PrimaryKey(value =“id” )如果您的pojo具有 id 的属性。 对于 CassandraConfiguration .class,请按照我的回答here。