真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

springboot如何整合solr

本篇文章為大家展示了springboot如何整合solr,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價比柘榮網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式柘榮網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋柘榮地區(qū)。費用合理售后完善,十余年實體公司更值得信賴。

一、下載 solr 

下載地址 ,選擇你想要下載的版本

http://archive.apache.org/dist/lucene/solr/7.5.0/

下載解壓

springboot如何整合solr

二、啟動 solr 

solr 的啟動方式有多種,可以結(jié)合 tomcat,新版本的 solr 可以直接啟動。這里通過命令行啟動。

打開 cmd,啟動項目

springboot如何整合solr

這里記下兩個常用命令

啟動 bin\solr.cmd start
停止 bin\solr.cmd stop -all

注意:如果啟動失敗 提示 缺少 managed-schema 的話,解決辦法如下

把 \server\resources 下的 conf  文件夾 復(fù)制到新建的 core 中  \server\solr\new_core

啟動成功后,打開瀏覽器進入 solr 控制臺 http://localhost:8983/solr/#/

springboot如何整合solr

三 、添加 core 和 字段

core相當于數(shù)據(jù)表,我們可以對 core 進行管理

springboot如何整合solr

選中 core ,創(chuàng)建字段,輸入字段名和所對應(yīng)的分詞器

springboot如何整合solr

四、數(shù)據(jù)操作演示

springboot如何整合solr

/update : 添加或更新數(shù)據(jù)

JSON : 以 json 格式添加數(shù)據(jù)

添加成功后,我們查詢一下

springboot如何整合solr

q :查詢關(guān)鍵字 ,可以通過 字段名=key 指定查詢字段名
sort : 排序
start  rows : 分頁查詢
fl:指定返回結(jié)果需要顯示的字段
df:默認域 指定需要查詢的字段

五、中文分詞器

鏈接:https://pan.baidu.com/s/1i5DJbj0lBeaJpgd1BInMxg 
提取碼:prfe

下載后,放到 \server\solr-webapp\webapp\WEB-INF\lib 目錄下

然后編輯 managed-schema.xml。增加以下內(nèi)容 ,最后重啟 solr 

  
          
  

現(xiàn)在來測試一下未使用中文分詞器之前和之后的區(qū)別
springboot如何整合solr

springboot如何整合solr

可以看到 text_ik 分詞器更加符合漢字的分詞習慣

六、springboot 整合 solr

jar包依賴


		
			org.springframework.boot
			spring-boot-starter-data-solr
		

application.properties配置,這是指定了 core 的情況,也可以不指定,在操作的時候再指定

spring.data.solr.host=http://localhost:8983/solr/new_core

測試用例

package org.elvin.mysolr.controller;

import org.apache.solr.client.solrj.SolrClient;
import org.apache.solr.client.solrj.SolrQuery;
import org.apache.solr.client.solrj.response.QueryResponse;
import org.apache.solr.common.SolrDocument;
import org.apache.solr.common.SolrDocumentList;
import org.apache.solr.common.SolrInputDocument;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import java.util.List;
import java.util.Map;
import java.util.UUID;

@RestController
@RequestMapping("solr")
public class SolrController {

    @Autowired
    private SolrClient client;

    /**
     * 新增/修改 索引
     * 當 id 存在的時候, 此方法是修改(當然, 我這里用的 uuid, 不會存在的), 如果 id 不存在, 則是新增
     * @return
     */
    @RequestMapping("add")
    public String add() {
        String uuid = UUID.randomUUID().toString().replaceAll("-", "");
        try {
            SolrInputDocument doc = new SolrInputDocument();
            doc.setField("id", uuid);
            doc.setField("studentName", "小王同學(xué)");

            /* 如果spring.data.solr.host 里面配置到 core了, 那么這里就不需要傳 new_core 這個參數(shù)
             * 下面都是一樣的
             */

            client.add("new_core", doc);
            //client.commit();
            client.commit("new_core");
            return uuid;
        } catch (Exception e) {
            e.printStackTrace();
        }

        return "error";
    }

    /**
     * 根據(jù)id刪除索引
     * @param id
     * @return
     */
    @RequestMapping("delete")
    public String delete(String id)  {
        try {
            client.deleteById("new_core",id);
            client.commit("new_core");

            return id;
        } catch (Exception e) {
            e.printStackTrace();
        }


        return "error";
    }

    /**
     * 刪除所有的索引
     * @return
     */
    @RequestMapping("deleteAll")
    public String deleteAll(){
        try {

            client.deleteByQuery("new_core","*:*");
            client.commit("new_core");

            return "success";
        } catch (Exception e) {
            e.printStackTrace();
        }
        return "error";
    }

    /**
     * 根據(jù)id查詢索引
     * @return
     * @throws Exception
     */
    @RequestMapping("getById")
    public String getById() throws Exception {
        SolrDocument document = client.getById("new_core", "536563");
        System.out.println(document);
        return document.toString();
    }

    /**
     * 綜合查詢: 在綜合查詢中, 有按條件查詢, 條件過濾, 排序, 分頁, 高亮顯示, 獲取部分域信息
     * @return
     */
    @RequestMapping("search")
    public Map>> search(){

        try {
            SolrQuery params = new SolrQuery();

            //查詢條件, 這里的 q 對應(yīng) 下面圖片標紅的地方
            params.set("q", "手機");

            //過濾條件
            params.set("fq", "product_price:[100 TO 100000]");

            //排序
            params.addSort("product_price", SolrQuery.ORDER.asc);

            //分頁
            params.setStart(0);
            params.setRows(20);

            //默認域
            params.set("df", "product_title");

            //只查詢指定域
            params.set("fl", "id,product_title,product_price");

            //高亮
            //打開開關(guān)
            params.setHighlight(true);
            //指定高亮域
            params.addHighlightField("product_title");
            //設(shè)置前綴
            params.setHighlightSimplePre("");
            //設(shè)置后綴
            params.setHighlightSimplePost("");

            QueryResponse queryResponse = client.query(params);

            SolrDocumentList results = queryResponse.getResults();

            long numFound = results.getNumFound();

            System.out.println(numFound);

       //獲取高亮顯示的結(jié)果, 高亮顯示的結(jié)果和查詢結(jié)果是分開放的
            Map>> highlight = queryResponse.getHighlighting();

            for (SolrDocument result : results) {
                System.out.println(result.get("id"));
                System.out.println(result.get("product_title"));
                //System.out.println(result.get("product_num"));
                System.out.println(result.get("product_price"));
                //System.out.println(result.get("product_image"));

                Map> map = highlight.get(result.get("id"));
                List list = map.get("product_title");
                System.out.println(list.get(0));

                System.out.println("------------------");
                System.out.println();
            }
            return highlight;
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }

}

上述內(nèi)容就是springboot如何整合solr,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


當前標題:springboot如何整合solr
本文來源:http://weahome.cn/article/psighj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部