Spring Data Cassandra 在执行实体查询时未配置表

问题描述 投票:0回答:0
@Table("person_details")
class Person{
}

public interface PresonRepo extends CassandraRepository<Person, String>{
 
findByAgeGreaterThan(int age)

错误:

InvalidQueryException: unconfigured table person_details

日志:

Preparing statement [SELECT * FROM "person_details" WHERE age>?

@Query("select * from person_details where age >?0")
findByAgeGreaterThan (int age); //success
}

不知道为什么会这样。

版本:

  • cassandra 驱动程序 - 4.15.0
  • 弹簧靴 2.7.7
  • 弹簧数据卡桑德拉 3.4.6
spring-boot cassandra spring-data-cassandra
© www.soinside.com 2019 - 2024. All rights reserved.