Get All Items from DynamoDB Using Java (Guide w/ Code Examples)

Provided by Rafal Wilinski
In this example, a ScanRequest is created and set to retrieve data from the "MyTable" table. The ScanResult is retrieved and stored in a variable called result. The Scan operation is called in a do-while loop. The loop continues as long as the LastEvaluatedKey attribute of the ScanResult object is not null. This attribute is present when the Scanoperation has been paginated and contains the primary key of the last item on the current page of results. The setExclusiveStartKey method is used to set the primary key to start the next scan operation so that the next page of results will be retrieved.
import com.amazonaws.services.dynamodbv2.AmazonDynamoDB; import com.amazonaws.services.dynamodbv2.AmazonDynamoDBClientBuilder; import com.amazonaws.services.dynamodbv2.model.ScanRequest; import com.amazonaws.services.dynamodbv2.model.ScanResult; public class GetAllItemsExample { public static void main(String[] args) { AmazonDynamoDB client = AmazonDynamoDBClientBuilder.defaultClient(); ScanRequest scanRequest = new ScanRequest().withTableName("MyTable"); ScanResult result; do { result = client.scan(scanRequest); result.getItems().forEach(item -> System.out.println(item)); scanRequest.setExclusiveStartKey(result.getLastEvaluatedKey()); } while (result.getLastEvaluatedKey() != null); } }
Similar Code Examples
- Update Expression in DynamoDB Using Java
- Query Index in DynamoDB Using Java
- Query Date Range in DynamoDB Using Java
- Delete Multiple Items in DynamoDB Using Java
- Query Local Secondary Index in DynamoDB Using Java
- Update Multiple Items in DynamoDB Using Java
- Batch Get in DynamoDB Using Java
- Get Item Request in DynamoDB Using Java
- Update Multiple Attributes in DynamoDB Using Java
- Batch Query in DynamoDB Using Java
- Update Attribute in DynamoDB Using Java
- Batch Read in DynamoDB Using Java
- Delete Expression in DynamoDB Using Java
- Insert in DynamoDB Using Java
- Batch Save Using DynamoDB Mapper
Dynobase is a Professional GUI Client for DynamoDB
Start your 7-day free trial today
Product Features
- New in Dynobase 3.0
- Semantic and Vector Search
- Schema Explorer
- Visual JSON Path Filtering
- Visual Item Diff
- MCP Server for AI Tools
- Use SQL with DynamoDB
- Import CSV To DynamoDB
- Import JSON To DynamoDB
- Export DynamoDB To JSON
- Export DynamoDB To S3
- Export DynamoDB To CSV
- DynamoDB Update Item
- DynamoDB Delete All Items
- DynamoDB Delete Item
- DynamoDB Create Table
- DynamoDB Delete Table
- DynamoDB Conditional Update
DynamoDB Tools
DynamoDB Info
© 2026 Dynobase