I am new to DynamoDb stuff. I just want to know how can we query on a table in DynamoDB with the hashKey and rangeKey.
DynamoDb
hashKey
rangeKey
Let\'s say
You could use dynamoDbMapper.load() as following:
TestTable testTable = new TestTable(); testTable.setId("123"); testTable.setDate("1234"); TestTable result = dynamoDBMapper.load(testTable);