ES 写入
背景和价值
写入
@Autowired
private ElasticsearchRestTemplate elasticsearchTemplate;
public void save(XXXXDocument obj) {
String indexName = ...
IndexCoordinates indexCoordinates = IndexCoordinates.of(indexName);
// 创建IndexQuery
IndexQuery indexQuery = new IndexQueryBuilder()
.withObject(obj)
.withRouting(routing)//使用 YYYYMM 作为路由
.build();
elasticsearchTemplate.doIndex(indexQuery , indexCoordinates);
}

浙公网安备 33010602011771号