gpt4 book ai didi

spring-data - 使用 Spring-data-cassandra 查询具有复合主键的表

转载 作者:行者123 更新时间:2023-12-03 01:26:41 25 4
gpt4 key购买 nike

使用 CassandraReporitory 的 findOne() 或 findAll() 方法时出现以下异常:

Caused by: java.lang.IllegalStateException: property does not have a single column mapping
at org.springframework.data.cassandra.mapping.BasicCassandraPersistentProperty.getColumnName(BasicCassandraPersistentProperty.java:134)
at org.springframework.data.cassandra.convert.BasicCassandraRowValueProvider.getPropertyValue(BasicCassandraRowValueProvider.java:64)
at org.springframework.data.cassandra.convert.BasicCassandraRowValueProvider.getPropertyValue(BasicCassandraRowValueProvider.java:35)
at org.springframework.data.mapping.model.PersistentEntityParameterValueProvider.getParameterValue(PersistentEntityParameterValueProvider.java:78)
at org.springframework.data.convert.ReflectionEntityInstantiator.createInstance(ReflectionEntityInstantiator.java:71)
at org.springframework.data.convert.ClassGeneratingEntityInstantiator.createInstance(ClassGeneratingEntityInstantiator.java:83)
at org.springframework.data.cassandra.convert.MappingCassandraConverter.readEntityFromRow(MappingCassandraConverter.java:133)
at org.springframework.data.cassandra.convert.MappingCassandraConverter.readRow(MappingCassandraConverter.java:115)
at org.springframework.data.cassandra.convert.MappingCassandraConverter.read(MappingCassandraConverter.java:200)
at org.springframework.data.cassandra.repository.query.AbstractCassandraQuery.getSingleEntity(AbstractCassandraQuery.java:176)
at org.springframework.data.cassandra.repository.query.AbstractCassandraQuery.execute(AbstractCassandraQuery.java:133)
at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:454)
at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:432)

我的类定义如下:

@PrimaryKeyClass
public class ItemAndLocationKey implements Serializable {

private static final long serialVersionUID = 1L;

@PrimaryKeyColumn(name = "itemId", ordinal = 0, type = PrimaryKeyType.PARTITIONED)
@CassandraType(type = Name.UUID)
private UUID itemId;
@PrimaryKeyColumn(name = "locationId", ordinal = 1, type = PrimaryKeyType.CLUSTERED)
@CassandraType(type = Name.UUID)
private UUID locationId;

public ItemAndLocationKey(UUID itemId, UUID locationId) {
this.itemId = itemId;
this.locationId = locationId;
}

public UUID getItemId() {
return itemId;
}

public void setItemId(UUID itemId) {
this.itemId = itemId;
}

public UUID getLocationId() {
return locationId;
}

public void setLocationId(UUID locationId) {
this.locationId = locationId;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;

ItemAndLocationKey that = (ItemAndLocationKey) o;

if (!itemId.equals(that.itemId)) return false;
return locationId.equals(that.locationId);
}

@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + itemId.hashCode();
result = prime * result + locationId.hashCode();
return result;
}
}
<小时/>
@Table(value = ItemAndLocation.tableName)
public class ItemAndLocation {

@org.springframework.data.annotation.Transient
public static final String tableName = "ItemAndLocation";

@PrimaryKey
private ItemAndLocationKey itemAndLocationKey;

public ItemAndLocation(ItemAndLocationKey itemAndLocationKey) {
this.itemAndLocationKey = itemAndLocationKey;
}

public ItemAndLocationKey getItemAndLocationKey() {
return itemAndLocationKey;
}

public void setItemAndLocationKey(ItemAndLocationKey itemAndLocationKey) {
this.itemAndLocationKey = itemAndLocationKey;
}
}
<小时/>
public interface ItemAndLocationRepository extends TypedIdCassandraRepository<ItemAndLocation, ItemAndLocationKey> {

}
<小时/>

本质上,这里发生的事情是,在调用 findOne() 或 findAll() 期间从 Cassandra 读取一行后,spring data cassandra 尝试使用 ClassGenerateEntityInstantiator 实例化 ItemAndLocation 对象,该对象不知道如何填充复合主对象关键对象,ItemAndLocationKey。我不知道如何提供自定义对象实例化器。当前版本没有示例或文档。

任何帮助将不胜感激。

最佳答案

我也遇到了同样的问题,问题出在用@Table注释的中。

在您的场景中,您必须删除以下类中的重载构造函数:

@Table(value = ItemAndLocation.tableName)
public class ItemAndLocation {

@org.springframework.data.annotation.Transient
public static final String tableName = "ItemAndLocation";

@PrimaryKey
private ItemAndLocationKey itemAndLocationKey;

// \\\\\\\\\\\\\\\\\\\\ REMOVE THIS CONSTRUCTOR //////////////////
// public ItemAndLocation(ItemAndLocationKey itemAndLocationKey) {
// this.itemAndLocationKey = itemAndLocationKey;
// }
// ////////////////////////////////\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\


public ItemAndLocationKey getItemAndLocationKey() {
return itemAndLocationKey;
}

public void setItemAndLocationKey(ItemAndLocationKey itemAndLocationKey) {
this.itemAndLocationKey = itemAndLocationKey;
}
}

我希望这有帮助:)

关于spring-data - 使用 Spring-data-cassandra 查询具有复合主键的表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34363344/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com