springboot中mongodb的联表查询(MongoTemplate的使用)

接触mongodb的时间不长,第一次使用mongodb的联表查询,在网上查了一些资料,不过找到的例子都大同小异,而且照搬基本都是有问题的,感觉这些作者也是从别处copy的,根本没有测试。找到mongodb的文档又都是简单的例子,没什么参考性。所以花了很长时间自己试,终于得到了想要的结果。这里记录一下,也供大家参考。

@Autowired
MongoTemplate mongoTemplate;

public List demo() {
        LookupOperation lookupToLots = LookupOperation.newLookup().
            from("eCostRecord").//关联表名 lots
            localField("lsumpDocNumber").//关联字段
            foreignField("lsumpDocNumber").//主表关联字段对应的次表字段
            as("groups");//查询结果集合名    

        //主表
        Criteria ordercri = Criteria.where("eccDocNo").ne(null).ne("");
        AggregationOperation match = Aggregation.match(ordercri);
        //次表
        Criteria ordercri1 = Criteria.where("groups.success").is(true);
        AggregationOperation match1 = Aggregation.match(ordercri);

        UnwindOperation unwind = Aggregation.unwind("groups");
        Aggregation aggregation = Aggregation.newAggregation(match, match1, lookupToLots, unwind);

        return mongoTemplate.aggregate(aggregation, "reClassGroup", ReClassGroup.class).getMappedResults();


    }

这里有些要注意的地方:

1.查询结果集合名,这个是可以随便命名的,不过下面次表的属性过滤不能用次表的表名,而是要使用这个集合名(我的次表名是eCostRecord,要的是eCostRecord.success=true的,但是这里要用groups.success)。

2.

UnwindOperation unwind = Aggregation.unwind("groups");

这段代码千万不能少,看其他作者的例子都没有这段代码,次表的过滤条件根本就没有作用。这里的参数也是自己定义的查询结果集合名。

同时查了下mongodb里unwind的作用,是拆分集合用的。举个例子:

直接查询的结果是{"class":"1","name":["小明","小红"]},

通过unwind查询结果是{"class":"1","name":"小明"},{"class":"1","name":"小红"}。

 

不过不太理解这里为什么要加unwind,希望有熟悉mongodb的大神能够解惑,也欢迎大家一起交流

你可能感兴趣的:(spring_boot)