Cassandra issue

在Java连接Cassandra的情况下, 当使用组合主键时, 默认第一个是Partition Key, 后续的均为Clustering Key.

如果有多个Clustering Key, 在Java中需指定Clustering Key的Order顺序, 否则将出现 "The clustering keys ordering is wrong for @EmbeddedId" 错误。

代码示例:

`@Entity(table = "table_name")
public class DemoDO {

@EmbeddedId
private CompoundKey id;

public static class CompoundKey {

    @PartitionKey
    @Column(name = "filed_one")
    public String fieldOne;

    @ClusteringColumn(1)
    @Column(name = "field_two")
    private String fieldTwo;

    @ClusteringColumn(2)
    @Column(name = "field_three")
    private Date fieldThree;

    public CompoundKey() {
    }

    public CompoundKey(String fieldOne, String fieldTwo, Date fieldThree) {
        this.fieldOne= fieldOne;
        this.fieldTwo= fieldTwo;
        this.fieldThree= fieldThree;
    }

   ...

}

@Column(name = "field_four")
private String fieldFour;

...
}
`

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值