On 5/23/2016 6:35 AM, 김두형 wrote: > actually, i want to insert some logs into solrindexsearcher. so the place > where solrindexsearcher is solr-core.jar in dist. i replace new made > solr-core.jar with old solr-core.jar in dist. > in solrconfig i made this solrconfig refered this jar like below. > > <?xml version="1.0" encoding="UTF-8" ?> <config> <lib path= > "${solr.install.dir:}/dist/solr-core-5.5.0-SNAPSHOT.jar"/>
Assuming 5.3 or later (your filename says 5.5.0), you have to replace the solr-core jar in the server/solr-webapp/webapp/WEB-INF/lib directory. It does not need to have the same filename when you do this, but if it has a different name, you must delete the old one. Jetty loads the solr-core jar from the directory mentioned above when it starts Solr. The classes that actually process solrconfig.xml are in the solr-core jar ... so the original version is already loaded when your new config line is processed. Thanks, Shawn