使用solrj库

时间:2015-12-12 15:44:34

标签: java solrj

我试图使用solrj库在Cloudera Sorl服务器上做一些索引工作。

此时

        String zkHostString = "http://xxx.xxx.xxx.xxx:xxxx/solr";
        CloudSolrClient solr = new CloudSolrClient(zkHostString);

我收到了错误

> SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
> SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J:
> See http://www.slf4j.org/codes.html#StaticLoggerBinder for further

文件slf4j-api-1.7.7.jar存在于我的库路径中(我从/ dist和/ dist / solrj-lib获取了所有jar文件)

要构建我的项目,如果它重要的话,我将使用Eclipse。

1 个答案:

答案 0 :(得分:1)

很可能你的类路径中有旧版本的slf4j,它来自传递依赖。尝试检查此项,然后运行依赖关系树或任何其他工具来查找和解决冲突。