簡體   English   中英

DynamoDB 項目集合<queryoutcome>至 java object</queryoutcome>

[英]DynamoDB ItemCollection<QueryOutcome> to java object

我想將 ItemCollection 轉換為我的 java pojo object。我現在想通過以下方式這樣做。最好的方法是什么?

  QuerySpec spec = new QuerySpec()
                .withKeyConditionExpression("txn_id = :txnId")
                .withFilterExpression("rrn = :rrn")
                .withValueMap(new ValueMap()
                        .withString(":txnId", txnId)
                        .withString(":rrn", rrn))
                .withConsistentRead(true);
        ItemCollection<QueryOutcome> items = table.query(spec);

在這里我得到了 ItemCollection。現在我將把它轉換為我的 java pojo:-

        Iterator<Item> iter = items.iterator();
        while (iter.hasNext()) {
            String txn = iter.next().toJSON();
            Gson gson = new Gson();
            Test t = gson.fromJson(txn, Test.class);
            return t;
          }

Is there a way to convert dynamodb fetch value( ItemCollection) to java pojo directly like we do in mysql?Why i will always get json then covert to pojo.We don't do so in other DB like mysql or oracle DB.

文本.java

public class Test implements Serializable {


@DynamoDBAttribute(attributeName = "txn_id")
@JsonProperty("txn_id")
@DynamoDBHashKey
private String txnId;

private String umn;
private String note;

@DynamoDBAttribute(attributeName = "rrn")
private String rrn;

@DynamoDBAttribute(attributeName = "expire_on")
private Date expireOn;



@DynamoDBAttribute(attributeName = "expire_after")
private Integer expireAfter;

@DynamoDBAttribute(attributeName = "created_on")
@DynamoDBAutoGeneratedTimestamp(strategy= DynamoDBAutoGenerateStrategy.CREATE)
private Date createdOn;

}

是的,看看DynamoDBMapper 使用相同的 pojo 注釋...

CatalogItem partitionKey = new CatalogItem();

partitionKey.setId(102);
DynamoDBQueryExpression<CatalogItem> queryExpression = new DynamoDBQueryExpression<CatalogItem>()
    .withHashKeyValues(partitionKey);

List<CatalogItem> itemList = mapper.query(CatalogItem.class, queryExpression);

for (int i = 0; i < itemList.size(); i++) {
    System.out.println(itemList.get(i).getTitle());
    System.out.println(itemList.get(i).getBookAuthors());
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM