Examples of ParentEntity


Examples of org.springframework.data.elasticsearch.entities.ParentEntity

  }

  @Test
  public void shouldIndexParentChildEntity() {
    // index two parents
    ParentEntity parent1 = index("parent1", "First Parent");
    ParentEntity parent2 = index("parent2", "Second Parent");

    // index a child for each parent
    String child1name = "First";
    index("child1", parent1.getId(), child1name);
    index("child2", parent2.getId(), "Second");

    elasticsearchTemplate.refresh(ParentEntity.class, true);
    elasticsearchTemplate.refresh(ChildEntity.class, true);

    // find all parents that have the first child
View Full Code Here

Examples of org.springframework.data.elasticsearch.entities.ParentEntity

  }

  @Test
  public void shouldSearchTopChildrenForGivenParent() {
    // index two parents
    ParentEntity parent1 = index("parent1", "First Parent");
    ParentEntity parent2 = index("parent2", "Second Parent");

    // index a child for each parent
    String child1name = "First";
    index("child1", parent1.getId(), child1name);
    index("child2", parent2.getId(), "Second");

    elasticsearchTemplate.refresh(ParentEntity.class, true);
    elasticsearchTemplate.refresh(ChildEntity.class, true);

    // find all parents that have the first child using topChildren Query
View Full Code Here

Examples of org.springframework.data.elasticsearch.entities.ParentEntity

    // we're expecting only the first parent as result
    assertThat("parents", parents, contains(hasProperty("id", is(parent1.getId()))));
  }

  private ParentEntity index(String parentId, String name) {
    ParentEntity parent = new ParentEntity(parentId, name);
    IndexQuery index = new IndexQuery();
    index.setId(parent.getId());
    index.setObject(parent);
    elasticsearchTemplate.index(index);

    return parent;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.