缓存和发电机数据库组合的问题

时间:2017-08-03 21:54:55

标签: java amazon-web-services amazon-dynamodb amazon-elasticache

我正在使用AWS Elasticache,这是我使用注释的方法

@Cacheable(unless = "#result != null and #result.size() == 0")
public List<SomeObject> findById(String id) {
    return dynamoDBMapper.query(SomeObject.class, queryExpression(id));
}

这是我的查询表达式

DynamoDBQueryExpression<SomeObject> queryExpression(String id) {
    SomeObject object = new SomeObject();
    object.setId(id);
    return new DynamoDBQueryExpression<SomeObject>()
            .withIndexName("idIndex")
            .withConsistentRead(false)
            .withHashKeyValues(object)
            .withLimit(Integer.MAX_VALUE);
}

我继续在应用程序日志中收到此错误,

java.io.NotSerializableException: com.amazonaws.services.dynamodbv2.datamodeling.PaginatedQueryList

看起来它需要PaginatedQueryList类作为Serializable。虽然我试图缓存List,但不确定这个PaginatedQueryList是如何进入图片的。

感谢帮助!

1 个答案:

答案 0 :(得分:2)

PaginatedQueryList是Dynamodb查询方法返回的具体List实现。您必须将结果复制到List的可序列化实现中,如ArrayList。