java - Fetching All Items with DynamoDBMapper -


i want of records dynamo db table , have them mapped array of pojos; pojo simple , annotated.

dynamodbmapper appears object fetch acquire records , deserialize them pojos. perhaps using paginatedscanlist() walk through entire table.

mapper's scan() , paginatedscanlist() methods both require dynamodbscanexpression parameter. dynamodbscanexpression used select of records in table?

you can pass new dynamodbscanexpression() scan method.:

mapper.scan(myobject.class, new dynamodbscanexpression()); 

or use new document api


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

Rendering JButton to get the JCheckBox behavior in a JTable by using images does not update my table -