当前位置: 首页>>代码示例>>Java>>正文


Java HttpSolrClient.Builder方法代码示例

本文整理汇总了Java中org.apache.solr.client.solrj.impl.HttpSolrClient.Builder方法的典型用法代码示例。如果您正苦于以下问题:Java HttpSolrClient.Builder方法的具体用法?Java HttpSolrClient.Builder怎么用?Java HttpSolrClient.Builder使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.solr.client.solrj.impl.HttpSolrClient的用法示例。


在下文中一共展示了HttpSolrClient.Builder方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getHttpSolrClients

import org.apache.solr.client.solrj.impl.HttpSolrClient; //导入方法依赖的package包/类
/**
 *
 * @param cloudSolrClient
 * @return
 * @throws SolrServerException
 * @throws IOException
 */
private List<HttpSolrClient> getHttpSolrClients(CloudSolrClient cloudSolrClient) throws SolrServerException, IOException {
    List<HttpSolrClient> solrClients = new ArrayList<>();

    for (String baseUrl : getBaseUrls(cloudSolrClient)) {
        NoOpResponseParser responseParser = new NoOpResponseParser();
        responseParser.setWriterType("json");

        HttpSolrClient.Builder builder = new HttpSolrClient.Builder();
        builder.withBaseSolrUrl(baseUrl);

        HttpSolrClient httpSolrClient = builder.build();
        httpSolrClient.setParser(responseParser);

        solrClients.add(httpSolrClient);
    }

    return solrClients;
}
 
开发者ID:mosuka,项目名称:solr-exporter,代码行数:26,代码来源:SolrCollector.java

示例2: solrClient

import org.apache.solr.client.solrj.impl.HttpSolrClient; //导入方法依赖的package包/类
@Bean
@ConditionalOnMissingBean
public HttpSolrClient solrClient() {
    String core = properties.getSolr().getCore();
    String server = properties.getSolr().getServer();

    if (StringUtils.isNotBlank(core)) {
        server += (StringUtils.endsWith(server, "/") ? "" : "/" + core);
    }

    HttpSolrClient.Builder builder = new HttpSolrClient.Builder();
    builder.withBaseSolrUrl(server);

    return builder.build();
}
 
开发者ID:lodsve,项目名称:lodsve-framework,代码行数:16,代码来源:SolrConfiguration.java

示例3: TrainingSetIndexer

import org.apache.solr.client.solrj.impl.HttpSolrClient; //导入方法依赖的package包/类
public TrainingSetIndexer(String solrURL) {
    HttpSolrClient.Builder solrClientBuilder = new HttpSolrClient.Builder(solrURL);
    solr = solrClientBuilder.build();
}
 
开发者ID:alessandrobenedetti,项目名称:ltr-tools,代码行数:5,代码来源:TrainingSetIndexer.java

示例4: ModelIndexer

import org.apache.solr.client.solrj.impl.HttpSolrClient; //导入方法依赖的package包/类
public ModelIndexer(String solrURL) {
    HttpSolrClient.Builder solrClientBuilder = new HttpSolrClient.Builder(solrURL);
    solr = solrClientBuilder.build();
}
 
开发者ID:alessandrobenedetti,项目名称:ltr-tools,代码行数:5,代码来源:ModelIndexer.java


注:本文中的org.apache.solr.client.solrj.impl.HttpSolrClient.Builder方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。