jOOQ fetchGroups 不会 return 一对多关系的空集合

jOOQ fetchGroups does not return an empty collection for a one to many relationship

我有以下针对一对多关系的查询。

return create.select(Parent.asterisk(), Child.asterisk())
    .from(PARENT)
    .leftJoin(CHILD)
    .onKey()
    .where(myCondition)
    .fetchGroups(ParentRecord.class, ChildRecord.class);

当没有子记录时,我不会得到一个空列表。总有一个子记录,其所有字段都设置为空。

[Child(id=null, name=null)]

防止返回这些空记录的最佳方法是什么?

This is a popular use-case, so I've blogged about this part of jOOQ's API here.

您可以使用自己的收集器:

Map<ParentRecord, List<ChildRecord>> result =
create.select(PARENT.asterisk(), CHILD.asterisk())
    .from(PARENT)
    .leftJoin(CHILD).onKey()
    .where(myCondition)
    .collect(groupingBy(
        r -> r.into(PARENT), filtering(
            r -> r.get(CHILD.ID) != null, mapping(
                r -> r.into(CHILD), toList()
            )
        )
    ));

我假设这些静态导入:

import static java.util.stream.Collectors.*;
import static org.jooq.impl.DSL.*;
import static com.example.generated.Tables.*;

这是一个常见问题。改进当前的 API 可能是有意义的:https://github.com/jOOQ/jOOQ/issues/11888