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 -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -

javascript - Restarting Supervisor and effect on FlaskSocketIO -