22.2. insert
import org.elasticsearch.action.index.IndexResponse; import org.elasticsearch.client.Client; IndexResponse response = client.prepareIndex("information", "news", "1") .setSource("{ \"title\": \"ElasticSearch 5.5.2\"}") .get(); 使用 HashMap 插入 public void createData() { Map<String, Object> map = new HashMap<String, Object>(); map.put("name", "Neo Chen"); map.put("age", 30); map.put("book", new String[]{"Netkiller Linux 手札","Netkiller Java 手札"}); map.put("website", "http://www.netkiller.c...