我正在使用spring-data-aerospike
Maven版本1.0.2.RELEASE
存储具有以下架构的记录:
Column1 : name=hash; type=Integer; constraints=primary key
Column2 : name=products; type=List;
由于Column2是List类型的bin,所以我使用的是@Bin
注释。
我尝试切换到spring-data-aerospike 2.0.1.RELEASE
,它显示缺少编译错误@Bin
注释。那我要用什么代替@Bin
?
我找不到spring-data-aerospike
的任何发行说明文档。
答案 0 :(得分:1)
您应该对文档字段@org.springframework.data.aerospike.mapping.Field
使用标准的spring-data注释。