请问如何使用Spring Boot Rest Service在弹性搜索中插入记录
我们使用的是弹簧靴,服务周到。
我曾经尝试过使用弹性文件,但不能从中得到很多帮助
已使用以下方法,但未在ES中创建索引
IndexRequest indexRequest = new IndexRequest("INDEX_NAME", "type", "id")
.source(jsonMap)
.opType(DocWriteRequest.OpType.CREATE);
try {
ActionFuture<IndexResponse> response = client.index(indexRequest);