solr3.6 solrj ClassNotFoundException HttpRequestInterceptor

 

在 solr 3.6 中,客户端使用 solrj 时

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

时报一个错

Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/http/HttpRequestInterceptor
该错误的原因是没有集成以下几个 jar

httpclient-4.1.3.jar
httpclient-cache-4.1.3.jar
httpcore-4.1.4.jar
httpmime-4.1.3.jar

这几个 jar 在 solr 3.6 的发行包中并没有集成,需要从 这里下载

你可能感兴趣的:(Solr,Lucene)