You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Kevin Risden (JIRA)" <ji...@apache.org> on 2015/10/22 20:11:28 UTC

[jira] [Commented] (SOLR-8180) Missing logging dependency in solrj-lib for SolrJ

    [ https://issues.apache.org/jira/browse/SOLR-8180?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14969566#comment-14969566 ] 

Kevin Risden commented on SOLR-8180:
------------------------------------

in solr/solrj/ivy.xml there are two slf4j dependencies tagged for test only.

{code}
    <dependency org="org.slf4j" name="jcl-over-slf4j" rev="${/org.slf4j/jcl-over-slf4j}" conf="test"/>
    <dependency org="org.slf4j" name="slf4j-log4j12" rev="${/org.slf4j/slf4j-log4j12}" conf="test"/>
{code}

Should they both be included in solrj-lib or only jcl-over-slf4j based on what was discussed above? It would be changing the conf to compile.

I'm not sure what issues would come up if slf4j-log4j12 were to be included. It would make the default logging be log4j but at least there would be a concrete implementation.

I'm not sure if changing ivy.xml would also change the SolrJ POM.

> Missing logging dependency in solrj-lib for SolrJ
> -------------------------------------------------
>
>                 Key: SOLR-8180
>                 URL: https://issues.apache.org/jira/browse/SOLR-8180
>             Project: Solr
>          Issue Type: Bug
>          Components: SolrJ
>    Affects Versions: Trunk
>            Reporter: Kevin Risden
>         Attachments: SOLR-8180.patch
>
>
> When using DBVisualizer, SquirrelSQL, or Java JDBC with the Solr JDBC driver, an additional logging dependency must be added otherwise the following exception occurs:
> {code}
> org.apache.solr.common.SolrException: Unable to create HttpClient instance. 
> 	at org.apache.solr.client.solrj.impl.HttpClientUtil$HttpClientFactory.createHttpClient(HttpClientUtil.java:393)
> 	at org.apache.solr.client.solrj.impl.HttpClientUtil.createClient(HttpClientUtil.java:124)
> 	at org.apache.solr.client.solrj.impl.CloudSolrClient.<init>(CloudSolrClient.java:196)
> 	at org.apache.solr.client.solrj.io.SolrClientCache.getCloudSolrClient(SolrClientCache.java:47)
> 	at org.apache.solr.client.solrj.io.sql.ConnectionImpl.<init>(ConnectionImpl.java:51)
> 	at org.apache.solr.client.solrj.io.sql.DriverImpl.connect(DriverImpl.java:108)
> 	at org.apache.solr.client.solrj.io.sql.DriverImpl.connect(DriverImpl.java:76)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> 	at java.lang.reflect.Method.invoke(Method.java:497)
> 	at com.onseven.dbvis.h.B.D.ᅣチ(Z:1548)
> 	at com.onseven.dbvis.h.B.F$A.call(Z:1369)
> 	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
> 	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
> 	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
> 	at java.lang.Thread.run(Thread.java:745)
> Caused by: java.lang.reflect.InvocationTargetException
> 	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
> 	at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
> 	at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
> 	at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
> 	at org.apache.solr.client.solrj.impl.HttpClientUtil$HttpClientFactory.createHttpClient(HttpClientUtil.java:391)
> 	... 16 more
> Caused by: java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory
> 	at org.apache.http.impl.client.CloseableHttpClient.<init>(CloseableHttpClient.java:58)
> 	at org.apache.http.impl.client.AbstractHttpClient.<init>(AbstractHttpClient.java:287)
> 	at org.apache.http.impl.client.DefaultHttpClient.<init>(DefaultHttpClient.java:128)
> 	at org.apache.http.impl.client.SystemDefaultHttpClient.<init>(SystemDefaultHttpClient.java:116)
> 	... 21 more
> {code} 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org