@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
}
不知道为什么会这样。
版本: