This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//条件設定は略 | |
Condition rangeKeyCondition = new Condition().withComparisonOperator(); | |
//以下、v2での記述方法 | |
// ハッシュキーを設定 | |
Item dti = new Item(); | |
dti.setEntity(id); | |
//Queryの設定 | |
DynamoDBQueryExpression<Item> queryExpression = new DynamoDBQueryExpression<Item>() | |
.withHashKeyValues(dti) | |
.withRangeKeyCondition("r", rangeKeyCondition); //rのところはRangeKeyに該当する列 | |
// 参考までに以下、v1の場合の記述方法 | |
// // ハッシュキーを設定 | |
// DynamoDBQueryExpression queryExpression = new DynamoDBQueryExpression( | |
// new AttributeValue().withS(id)); | |
// // レンジキーの検索条件を設定 | |
// queryExpression.setRangeKeyCondition(rangeKeyCondition); |