标签: java spring-boot elasticsearch
我正在尝试实现多个索引,例如index1 / type1 index2 / type1等等。
当我尝试使用注释@Document定义类时,我需要指定indexname。
有没有办法在创建索引时定义类型并将索引名称作为参数传递。
ElasticSearchTemplate.createIndex(Indexname, type.class) ?
这样的事情是可能的。