Batch Write Using DynamoDB Mapper (Guide w/ Code Examples)

Provided by Rafal Wilinski
With the batch write operations, you can save multiple items to the DynamoDB table, by passing a list of items to the batchSave method of the DynamoDBMapper class. This method can be used to save new items and update existing items, depending on the primary key values provided. You might use the DynamoDBMapper's batchSave method to write multiple items in a single request in Java.
import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBMapper; import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBMapperConfig; public class BatchWriteExample { public static void main(String[] args) { // Create a new DynamoDBMapper AmazonDynamoDB client = AmazonDynamoDBClientBuilder.standard().build(); DynamoDBMapper mapper = new DynamoDBMapper(client); // Define a list of items to write List<Product> items = new ArrayList<>(); items.add(new Product("111", "Product 1", 10, 2)); items.add(new Product("222", "Product 2", 20, 4)); items.add(new Product("333", "Product 3", 30, 6)); // Write the items mapper.batchSave(items, DynamoDBMapperConfig.DEFAULT); } }
Similar Code Examples
- Delete All Items in DynamoDB Using Java
- Query Local Secondary Index in DynamoDB Using Java
- Update Multiple Items in DynamoDB Using Java
- Remove Item in DynamoDB Using Java
- Update Multiple Attributes in DynamoDB Using Java
- Batch Delete Using DynamoDB Mapper
- Update Item in DynamoDB Using Java
- Batch Save Using DynamoDB Mapper
- Batch Get in DynamoDB Using Java
- Query Hash Key Only in DynamoDB Using Java
- GetItem in DynamoDB Using Java
- Update Expression in DynamoDB Using Java
- Delete Expression in DynamoDB Using Java
- Remove with DynamoDB Mapper
- Get Multiple Items in DynamoDB Using Java
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