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

Issue with Caching and dynamo db combination

我正在使用 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 class 作为可序列化的。虽然我正在尝试缓存列表,但不确定这个 PaginatedQueryList 是如何进入画面的。

感谢帮助!

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