Map DynamoDB Items to Objects Using DynamoDBMapper
See a demonstration of the DynamoDBMapper class, which helps map your tables' items to Java objects.
Join the DZone community and get the full member experience.
Join For FreePreviously, we created DynamoDB Tables using Java.
For various databases, there is a set of tools that help to access, persist, and manage data between objects/classes and the underlying database. For example, for SQL databases, we use JPA, and for Cassandra, we use MappingManager.
DynamoDBMapper is a tool that enables you to access your data in various tables, perform various CRUD operations on items, and execute queries and scans against tables.
We will try to map the Users, Logins, Supervisors, and companies tables from the previous example. Users is a simple table using the users email as a Hash key.
package com.gkatzioura.dynamodb.mapper.entities;
import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBAttribute;
import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBHashKey;
import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBTable;
/**
* Created by gkatzioura on 9/20/16.
*/
@DynamoDBTable(tableName="Users")
public class User {
private String email;
private String fullName;
@DynamoDBHashKey(attributeName="email")
public String getEmail() {
return email;
}
@DynamoDBAttribute(attributeName="fullname")
public void setEmail(String email) {
this.email = email;
}
public String getFullName() {
return fullName;
}
public void setFullName(String fullName) {
this.fullName = fullName;
}
}
However, in various cases, our DynamoDB Table uses a hash and a range key. The Logins table keeps track of the login attempts of a user. The email is the hash key and the timestamp the range key.
package com.gkatzioura.dynamodb.mapper.entities;
import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBHashKey;
import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBRangeKey;
import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBTable;
/**
* Created by gkatzioura on 9/20/16.
*/
@DynamoDBTable(tableName="Logins")
public class Login {
private String email;
private Long timestamp;
@DynamoDBHashKey(attributeName="email")
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
@DynamoDBRangeKey(attributeName="timestamp")
public Long getTimestamp() {
return timestamp;
}
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
}
Another popular case are tables with global secondary indexes (GSI). For example, the Supervisors table is used to retrieve a supervisor by his name. However, we also use this table in order to retrieve all the supervisors from a specific company or the supervisors who work on specific factory of a company.
The supervisor name is our hash key, the company name is the hash key, and the factory name is the range key of the global secondary index.
package com.gkatzioura.dynamodb.mapper.entities;
import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBHashKey;
import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBIndexHashKey;
import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBIndexRangeKey;
import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBTable;
/**
* Created by gkatzioura on 9/21/16.
*/
@DynamoDBTable(tableName="Supervisors")
public class Supervisor {
private String name;
private String company;
private String factory;
@DynamoDBHashKey(attributeName="name")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@DynamoDBIndexHashKey(globalSecondaryIndexName = "FactoryIndex",attributeName = "company")
public String getCompany() {
return company;
}
public void setCompany(String company) {
this.company = company;
}
@DynamoDBIndexRangeKey(globalSecondaryIndexName = "FactoryIndex",attributeName = "factory")
public String getFactory() {
return factory;
}
public void setFactory(String factory) {
this.factory = factory;
}
}
Last but not least, we can use Local Secondary Indexes. The Companies table uses the company name as a hash key and the subsidiary name as a range key. Because we want to issue queries based on a company’s CEOs, a local secondary index is used with a range key based on the name of the CEO.
package com.gkatzioura.dynamodb.mapper.entities;
import com.amazonaws.services.dynamodbv2.datamodeling.*;
/**
* Created by gkatzioura on 9/21/16.
*/
@DynamoDBTable(tableName="Companies")
public class Company {
private String name;
private String subsidiary;
private String ceo;
@DynamoDBHashKey(attributeName="name")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@DynamoDBRangeKey(attributeName = "subsidiary")
public String getSubsidiary() {
return subsidiary;
}
public void setSubsidiary(String subsidiary) {
this.subsidiary = subsidiary;
}
@DynamoDBIndexRangeKey(localSecondaryIndexName = "CeoIndex",attributeName = "ceo")
public String getCeo() {
return ceo;
}
public void setCeo(String ceo) {
this.ceo = ceo;
}
}
You can find the source code on GitHub.
Published at DZone with permission of Emmanouil Gkatziouras, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments