使用Java中的DynamoDBMapper更新DynamoDB项

如何使用DynamoDBMapper更新DynamoDB项?

我有多个进程,使用DynamoDB表,因此,get save会产生不一致.我找不到使用DynamoDBMapper更新项目的方法.

解决方法

save()方法将根据SaveBehavior中设置的值执行putItem或updateItem.请参阅以下说明.由于这个原因,DynamoDBMapper类中没有更新方法.但是,有一个单独的删除方法可用.

Saves an item in DynamoDB. The service method used is determined by
the DynamoDBMapperConfig.getSaveBehavior() value,to use either
AmazonDynamoDB.putItem(PutItemRequest) or
AmazonDynamoDB.updateItem(UpdateItemRequest):

UPDATE (default) :
UPDATE will not affect unmodeled attributes on a save operation and a
null value for the modeled attribute will remove it from that item in
DynamoDB. Because of the limitation of updateItem request,the
implementation of UPDATE will send a putItem request when a key-only
object is being saved,and it will send another updateItem request if
the given key(s) already exists in the table.

UPDATE_SKIP_NULL_ATTRIBUTES : Similar to UPDATE except that it ignores
any null value attribute(s) and will NOT remove them from that item in
DynamoDB. It also guarantees to send only one single updateItem
request,no matter the object is key-only or not.

CLOBBER : CLOBBER
will clear and replace all attributes,included unmodeled ones,
(delete and recreate) on save. Versioned field constraints will also
be disregarded. Any options specified in the saveExpression parameter
will be overlaid on any constraints due to versioned attributes.

用法示例: –

DynamoDBMapperConfig dynamoDBMapperConfig = new DynamoDBMapperConfig(SaveBehavior.UPDATE);
dynamoDBMapper.save(yourObject,dynamoDBMapperConfig);

相关文章

最近看了一下学习资料,感觉进制转换其实还是挺有意思的,尤...
/*HashSet 基本操作 * --set:元素是无序的,存入和取出顺序不...
/*list 基本操作 * * List a=new List(); * 增 * a.add(inde...
/* * 内部类 * */ 1 class OutClass{ 2 //定义外部类的成员变...
集合的操作Iterator、Collection、Set和HashSet关系Iterator...
接口中常量的修饰关键字:public,static,final(常量)函数...