http://stackoverflow.com/questions/23730641/parent-child-relationships-in-spring-data-elastic-search
父实体类及子实体类的搜索方法如下:
- @Document(indexName = "parent-child", type = "parent-entity")
- public class ParentEntity {
- @Id
- private String id;
- @Field(type = FieldType.String, index = FieldIndex.analyzed, store = true)
- private String name;
- // setter/getter
- public ParentEntity() {
- }
- public ParentEntity(String id, String name) {
- this.id = id;
- this.name = name;
- }
- }
- @Document(indexName = "parent-child", type = "child-entity")
- public class ChildEntity {
- @Id
- private String id;
- @Field(type = FieldType.String, store = true)
- @Parent(type = "parent-entity")
- private String parentId;
- @Field(type = FieldType.String, index = FieldIndex.analyzed, store = true)
- private String name;
- public ChildEntity() {
- }
- public ChildEntity(String id, String parentId, String name) {
- this.id = id;
- this.parentId = parentId;
- this.name = name;
- }
- }
// 为父实体类做索引(你还可以使用许多其它的方法做索引 例如: repositories)
- ParentEntity parent1 = new ParentEntity("parent1", "First Parent");
- IndexQuery parentIndex1 = new IndexQuery();
- parentIndex1.setId(parent1.getId());
- parentIndex1.setObject(parent1);
- elasticsearchTemplate.index(parentIndex1);
- ParentEntity parent2 = new ParentEntity("parent2", "Second Parent");
- IndexQuery parentIndex2 = new IndexQuery();
- parentIndex2.setId(parent2.getId());
- parentIndex2.setObject(parent2);
- elasticsearchTemplate.index(parentIndex2);
// 为子实体类做索引
- ChildEntity child1 = new ChildEntity("child1", parent1.getId(), "First");
- IndexQuery childIndex1 = new IndexQuery();
- childIndex1.setId(child1.getId());
- childIndex1.setObject(child1);
- childIndex1.setParentId(child1.getParentId());
- elasticsearchTemplate.index(childIndex1);
- ChildEntity child2 = new ChildEntity("child2", parent1.getId(), "Second");
- IndexQuery childIndex2 = new IndexQuery();
- childIndex2.setId(child2.getId());
- childIndex2.setObject(child2);
- childIndex2.setParentId(child2.getParentId());
- elasticsearchTemplate.index(childIndex2);
//搜索
对于主从结构的实体类,有三种可选的搜索方法:
1.has children 点击打开链接
2.has parent 点击打开链接
3.top children 点击打开链接
- QueryBuilder query = topChildrenQuery("child-entity", QueryBuilders.termQuery("name", child1name.toLowerCase()));
- SearchQuery searchQuery = new NativeSearchQueryBuilder().withQuery(query).build();
- List<ParentEntity> parents = elasticsearchTemplate.queryForList(searchQuery, ParentEntity.class);
http://blog.csdn.net/wilsonke/article/details/44113785
相关推荐
在使用Spring Data Elasticsearch框架时,可能会遇到一个常见的问题,即版本兼容性问题。Spring Data Elasticsearch 5.4.0设计时可能并未考虑到与Elasticsearch 5.4.1的完全兼容,导致在升级Elasticsearch到5.4.1后...
**Spring-Data-Elasticsearch中文使用文档** Spring Data Elasticsearch 是一个强大的Java库,它使得在Elasticsearch数据库中操作数据变得更加简单。这个框架是Spring Data项目的一部分,它为Elasticsearch提供了...
Spring Data Elasticsearch API(Spring Data Elasticsearch 开发文档).CHM。 官网 Spring Data Elasticsearch API
Spring Data Elasticsearch是Spring Data项目的一部分,该项目旨在简化数据访问层的开发,提高开发效率。Spring Data Elasticsearch专门用于简化Elasticsearch数据的访问,Elasticsearch是一个高度可扩展的开源全文...
**Spring Data Elasticsearch 深入解析** Spring Data Elasticsearch 是一个由 Spring 社区开发的库,它为使用 Elasticsearch(一个高性能、分布式全文搜索引擎)提供了一种简单且强大的方式。Spring Data Elastic...
本示例程序主要是对spring data elasticsearch的实践,包含接口声明查询、注解查询和自定义repository查询。运行TestCase时候,请先将配置文件中ES服务端ip:port配置替换成真是的服务端地址
本教程将深入剖析"springdata_es_demo.zip"提供的源码,帮助读者掌握如何利用SpringData Elasticsearch进行数据操作。 首先,我们需要了解SpringData Elasticsearch的基本概念。SpringData Elasticsearch是Spring ...
本示例程序主要是对spring data elasticsearch的实践,包含接口声明查询、注解查询和自定义repository查询。运行TestCase时候,请先将配置文件中ES服务端ip:port配置替换成真是的服务端地址
Spring-Data-Elasticsearch 中文文档
"SpringBoot整合Spring Data Elasticsearch的过程详解" SpringBoot整合Spring Data Elasticsearch是将SpringBoot框架与Elasticsearch搜索引擎进行整合,以实现数据的搜索和索引功能。下面将详细介绍SpringBoot整合...
在IT行业中,Spring Data Elasticsearch是一个非常重要的框架,它允许开发者轻松地与Elasticsearch数据库进行交互,实现数据的增删改查操作。本项目是一个基于Maven构建的示例,旨在帮助我们理解如何在实际应用中...
spring-data-elasticsearch api 离线文档, spring-data-elasticsearch2.0.2spring-data-elasticsearch api spring-data-elasticsearch api 离线文档
Spring Data Elasticsearch是Spring Data项目的一部分,它为Elasticsearch搜索引擎提供了一个集成的解决方案。Elasticsearch是一个开源的搜索引擎,它构建于Apache Lucene之上,旨在提供一个快速、可靠和可扩展的...
然后,我们需要创建一个ElasticsearchRepository接口,继承自Spring Data Elasticsearch提供的`ElasticsearchRepository`,并指定实体类和ID类型: ```java public interface UserRepository extends Elasticsearch...
v /Users/xingyue/Home/xingyue/学习/工程化/es/data:/usr/share/elasticsearch/data -v /Users/xingyue/Home/xingyue/学习/工程化/es/config:/usr/share/elasticsearch/config -v /Users/xingyue/Home/xingyue/学习...
5.SpringData ElasticSearch实现CRUD操作 第九章 SpringData MongDB 1.SpringData MongDB简介 2.MongDB环境搭建 3.MongDB基础知识回顾 4.SpringData MongDB入门案例 5.SpringData MongDB实现CRUD操作 第十章 综合...
2. Spring Data Elasticsearch:展示了基本文本搜索、地理空间搜索和分面搜索的示例。使用了High Level REST Client作为模板和仓库的后端。 - example:展示了使用基本文本搜索、地理空间搜索和分面搜索的示例。 -...
Spring Data Elasticsearch项目是一个将Spring的核心概念应用于使用Elasticsearch搜索引擎开发解决方案的项目。在本参考手册中,我们主要关注Spring Data 2.0.11版本,它包含了对默认RepositoryFactoryBean的支持。 ...
《Spring Data Elasticsearch实战:构建应用示例》 在IT领域,Elasticsearch作为一个强大的全文搜索引擎,因其高效、灵活和可扩展性,被广泛应用于数据检索、日志分析、监控等多种场景。Spring Data Elasticsearch...