什么是Solr的服务器,用于从SolrJ客户端使用的默认地址(Solr的4.0)(What is t

2019-08-31 16:31发布

我试图用来自SolrJ客户Solr的服务器连接,但它提供了一个HttpResponse异常。

这里是我的代码:

SolrServer server = new HttpSolrServer("http://"localhost":8983/solr/");

这里的例外:

java.lang.NoClassDefFoundError:组织/阿帕奇/ HTTP / NoHttpResponseException:

是否Solr的有一个默认的地址? 在哪里可以找到它?

Answer 1:

我不熟悉SolrJ - 但端点似乎缺少核心的名字给我。

你会需要你的Solr客户端指向特定的核心。

的URI的核心应该是这样的(为重新加载核心命令)

http://localhost:8983/solr/{{solrCoreName}}

该管理界面应在访问

http://localhost:8983/solr


文章来源: What is the default address of Solr Server (Solr 4.0) for use from a SolrJ client
标签: solr solrj