私はこれを試してみて、うまくいきます。
@Autowired
private CassandraOperations cassandraOperations;
in my method
{
String cqlAll = "select * from customer where cust_id=123";
List<Customer> results = cassandraOperations.select(cqlAll, Customer.class);
for (Customer p : results)
{
System.out.println(p.getCust_id() + "-"+p.getCust_name()+"-"+p.getCust_password());
}
}
しかし、クエリファイルを個別に記述できるように、値を文字列に渡したいと思います。このようなもの、
String cqlAll = "select * from customer where cust_id=?";
objects[] obj = {123};
List<Customer> results = cassandraOperations.select(cqlAll, obj ,Customer.class);
for (Customer p : results)
{
System.out.println(p.getCust_id() + "-"+p.getCust_name()+"-"+
p.getCust_password());
}