我们正在使用Spring Data Elasticsearch来开发我们的搜索机制。我只是想知道我们如何才能拥有相同类型/文档的父子映射?代码更像是这样:
@Document(indexName = "customer", type = "catalogue_item")
public class CatalogueItemDocument {
...
@Field(type = FieldType.Nested, includeInParent = true)
private Set<CatalogueItemDocument> children;
...
}
这可能吗?如果没有,我如何使用Elasticsearch here建议的父子实现来实现这一目标。