0
我在我們的應用程序中實現了SOLR服務器。 我們使用SolrJ軟件包中的CommonsHttpSolrServer連接到使用commons-httpclient的solr服務器。 我們也使用Spring。使用基本身份驗證在Spring中配置HttpClient
現在我們的系統管理員保護了solr服務器(有充分的理由)並使用了基本身份驗證。
我怎樣才能實例化一個HttpClient與基本身份驗證注入SolrJ?
例如
<bean id="httpSolrServer" class="org.apache.solr.client.solrj.impl.CommonsHttpSolrServer">
<constructor-arg value="${solrserver_path}" />
<constructor-arg ref="solrHttpClient" />
</bean>
謝謝!
有趣的是'solrHttpClient'的定義,你已經把它留下 – skaffman 2010-10-05 15:38:34
這正是我尋找的部分 – 2010-10-11 08:13:22