solr 6.3的SolrjPopulator错误

时间:2017-03-27 04:31:37

标签: solr solrj

我正在尝试运行简单的solrj api示例并面临以下错误。任何建议请。 enter image description here

错误: - enter image description here

1 个答案:

答案 0 :(得分:1)

查看您的代码可能您使用的是旧版本的SolrJ。

我建议升级您的SolrJ版本,使用以下方法创建您的HTTP客户端:

String urlString = "http://localhost:8983/solr/person";
SolrClient solrClient = new HttpSolrClient.Builder(urlString).build();