按引用字段排序spring数据mongodb

时间:2019-02-04 14:23:24

标签: java spring-data-mongodb

我在按引用字段排序时遇到问题。

有我的收藏集

集合A

class A{
    @Id
    private String id;

    @DBRef
    private B b;

    // rest of the class code..
}

集合B

Class B{
    @Id
    private String id;

    private String type;
}

我要请求我的收藏夹A并按收藏夹B中的类型对结果进行排序。

0 个答案:

没有答案