欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

基于自定义配置文件初始化ElasticSearch客户端方法介绍

程序员文章站 2022-03-30 22:35:27
...
基于自定义配置文件初始化ElasticSearch客户端方法介绍

bboss es booter初始化的时候会按顺序扫描默认加载以下3个配置文件:
conf/elasticsearch.properties,application.properties,config/application.properties


本文介绍基于自定义配置文件初始化bboss es方法,非常简单看代码:
/**
 * boot操作必须在所有的ClientInterface组件创建之前调用
 *  按照默认的配置文件初始化elasticsearch客户端工具
 *     conf/elasticsearch.properties,application.properties,config/application.properties
 */
//ElasticSearchBoot.boot();

/**
 * boot操作必须在所有的ClientInterface组件创建之前调用
 * 根据指定的配置文件初始化elasticsearch客户端工具
 * @param configFile 指定1到多个多个ElasticSearch属性配置文件,对应的路径格式为(多个用逗号分隔),例如:
 * conf/elasticsearch.properties,application.properties,config/application.properties
 * 上述的文件都是在classpath下面即可,如果需要指定绝对路径,格式为:
 * file:d:/conf/elasticsearch.properties,file:d:/application.properties,config/application.properties
 *
 * 说明:带file:前缀表示后面的路径为绝对路径
 */
ElasticSearchBoot.boot("application.properties");


开发交流
elasticsearch技术交流群:166471282

elasticsearch微信公众号:bbossgroups
基于自定义配置文件初始化ElasticSearch客户端方法介绍
            
    
    博客分类: bboss elastic elasticsearchbbossbooter