作者:破背包 | 来源:互联网 | 2023-06-15 13:52
1.找到我们的solr_home目录,新建一个文件夹catalog(这也是我们将来core的名称),找到上次我们解压的solr-5.2.1.zip压缩包的解压文件,把D:\solr-5
1.找到我们的solr_home目录,新建一个文件夹catalog(这也是我们将来core的名称),找到上次我们解压的solr-5.2.1.zip压缩包的解压文件,把D:\solr-5.2.1\example\example-DIH\solr\solr下的所有文件复制到我们的新建目录下。同时把D:\solr-5.2.1\dist下的solr-dataimporthandler-5.2.1.jar和solr-dataimporthandler-extras-5.2.1.jar复制到D:\apache-tomcat-7.0.54\webapps\solr\WEB-INF\lib中。
2.找到D:\solr-home\catalog\conf\schema.xml来配置solr和数据库的对应字段。uniqueKey是文档的唯一标识, 必须标识对应的字段,否则solr建立索引报错。此处的field的name属性最好和数据库的字段保持一致,这样我们可以减少一些映射配置。具体配置如下:
catalogid
"catalogid"
type="string" indexed=
"true" stored=
"true" required=
"true" multiValued=
"false" />
"catalogname" type="string" indexed="true" stored="true" required="false" />
"fatherid" type="string" indexed="true" stored="true" required="false" />
"photo" type="string" indexed="true" stored="true" required="false" />3.找到D:\solr-home\catalog\conf\solrconfig.xml在文件结尾加上如下配置:
<requestHandler name="/dataimport" class="org.apache.solr.handler.dataimport.DataImportHandler">
<lst name="defaults">
<str name="config">data-config.xmlstr>
lst>
requestHandler>
4.找到D:\solr-home\catalog\conf\data-config.xml,这里因为我们的schema.xml文件字段name和数据库表字段一致所以就省去了在entity里进行field映射配置,配置如下:
<dataConfig>
<dataSource driver="com.mysql.jdbc.Driver" url="jdbc:mysql://127.0.0.1:3306/solr" user="user" password="password"/>
<document>
<entity name="get_catalog" query="select * from dbo_car_catalognew">
entity>
document>
dataConfig>
5.以上配置文件目录如下图所示:
6.做好以上配置之后用solr管理界面来添加core,如下图所示:
7.开始数据导入,如下图所示:
8.现在就可以查看到导入的数据了。