3

我使用 Spring Data (1.3.0.RC1) 来访问我们的 MongoDB,对于一些新的查询,我想使用聚合框架。

在 mongo shell 中,命令是:

db.spotreports.aggregate(
 { "$unwind" : "$pd"} , { "$group" : { "_id" : "$pd.PDch", "base" : {$sum : "$pd.aBL"}, "uplift" : {$sum : "$pd.up"}}})
{
"result" : [
{
"_id" : 5,
"base" : 529133,
"uplift" : 21516
},
...

我使用的 Spring 代码是:

Aggregation agg = Aggregation.newAggregation(
Aggregation.unwind("pd"),
Aggregation.group("pd.PDch").sum("pd.aBL").as("base").sum("pd.up").as("uplift")
);

AggregationResults<SpotReportResult> result = mongoTemplate.aggregate(agg, resolveCollection(), SpotReportResult.class);

我收到以下错误:

java.lang.IllegalArgumentException: Invalid reference 'PDch'!
at org.springframework.data.mongodb.core.aggregation.ExposedFieldsAggregationOperationContext.getReference(ExposedFieldsAggregationOperationContext.java:63)
at org.springframework.data.mongodb.core.aggregation.ExposedFieldsAggregationOperationContext.getReference(ExposedFieldsAggregationOperationContext.java:47)
at org.springframework.data.mongodb.core.aggregation.GroupOperation.toDBObject(GroupOperation.java:284)
at org.springframework.data.mongodb.core.aggregation.Aggregation.toDbObject(Aggregation.java:228)

我想知道为什么spring要引用'PDch'而不是'pd.PDch'?

4

2 回答 2

1

问题不是PDchpd.PDch。由于某种原因,代码没有使用Aggregation.DEFAULT_CONTEXT来获取字段引用。当有多个字段时,就会发生这种情况。如果您只有一个组字段,则代码可以正常工作。

于 2013-09-13T15:09:45.497 回答
1

根据DATAMONGO-753,这应该在最新的快照中得到修复,并在即将发布的 1.3.2 错误修复版本和即将发布的 Spring Data MongoDB 1.4 M1 中发布。

于 2013-09-30T17:30:19.487 回答