我是Dynamo DB的新手。我正在使用Amazon DDb文檔來實現QUERY方法。我正在嘗試做類似於提供的示例(線程示例的答覆)。找不到通常的QueryRequest.withKeyConditions()方法(Dynamo DB)
我無法在QueryRequest下找到'withKeyConditionsMethod'。我錯過了什麼?
我是Dynamo DB的新手。我正在使用Amazon DDb文檔來實現QUERY方法。我正在嘗試做類似於提供的示例(線程示例的答覆)。找不到通常的QueryRequest.withKeyConditions()方法(Dynamo DB)
我無法在QueryRequest下找到'withKeyConditionsMethod'。我錯過了什麼?
如果您使用的是舊版本的api(在java包com.amazonaws.services.dynamodb.model
中),那麼語法稍有不同,您必須使用withRangeKeyCondition
。這裏的QueryRequest
類與舊版本,你可以看到它是如何棄用: http://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/services/dynamodb/model/QueryRequest.html
如果您正在使用的API的新版本(你應該在java包com.amazonaws.services.dynamodbv2.model
,那麼你會看到QueryRequest
有withKeyConditions
方法,如下所示: http://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/services/dynamodbv2/model/QueryRequest.html