Elasticsearch mapping and indexing nested array object with java api.
Nested Object Mapping We will explain how create mapping and indexing nested object in elasticsearch with Java API.Json object is as follows.How can you create mapping and indexing the following json object with java API? Blog class has an attribute and array of authors class object. { "name":"www.tfasun.com", "authors":[ { "name":"tarik", "surname":"fasun", "numberOfArticles":3 }, { "name":"tarik1", "surname":"fasun1", "numberOfArticles":4 } ] } /** * Created by tarik on 23/04/17. */ public class Blog implements Serializable { private String name; private List<Authors> authors; public Blog(String name, List authors) { this.name = name; this.authors = authors; } public Blog() { } public Stri...