溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

elasticsearch中java客戶端api的使用方法

發(fā)布時(shí)間:2020-06-11 16:55:27 來(lái)源:億速云 閱讀:285 作者:鴿子 欄目:編程語(yǔ)言

1.客戶端client構(gòu)建

package com.pz998.app.service.utils;

import static org.elasticsearch.common.settings.Settings.settingsBuilder;

import java.net.InetSocketAddress;

import org.elasticsearch.client.Client; 
import org.elasticsearch.client.transport.TransportClient; 
import org.elasticsearch.common.settings.Settings; 
import org.elasticsearch.common.transport.InetSocketTransportAddress;

public class SearchHelp {

private static TransportClient client = null;

public static Client getSearchClient() {    if(client!=null){        return client;    }    Settings setting = settingsBuilder()    //集群名稱            .put("cluster.name", "es-cluster")    .put("client.transport.sniff", true)    .put("client.transport.ignore_cluster_name", false)    .put("client.transport.ping_timeout", "5s")    .put("client.transport.nodes_sampler_interval", "5s")    .build();    client = TransportClient.builder().settings(setting).build();    ((TransportClient) client).addTransportAddress(new InetSocketTransportAddress(new InetSocketAddress("10.3.32.83", 9300)));    return client; } }

2.多字段檢索

public SearchResultVo queryDiseaseOrDoctor(SearchParam searchParam,Client client){     
    Integer from = searchParam.getFrom()==null?0:searchParam.getFrom(); 
    Integer size = searchParam.getPageSize()==null?0:searchParam.getPageSize(); 
    MultiSearchResponse response = client.prepareMultiSearch() 
            //搜索疾病索引 
            .add(client.prepareSearch(DISEASE_INDEX)// 檢索的目錄 
                .setSearchType(SearchType.DEFAULT)// Query type                 
                .setQuery(QueryBuilders.disMaxQuery() 
                          .add(QueryBuilders.matchQuery("name", searchParam.getKeyword())) 
                          .add(QueryBuilders.matchQuery("intro", searchParam.getKeyword()) 
                        ))     
                .addHighlightedField("name") 
                .addHighlightedField("intro") 

                .setHighlighterPreTags(FIELD_HIGHLIGHT_PRE_TAG) 
                .setHighlighterPostTags(FIELD_HIGHLIGHT_POST_TAG) 
                .setFrom(from).setSize(size).setExplain(true)) 
            //搜索醫(yī)生索引 
            .add(client.prepareSearch(DOCTOR_INDEX)// 檢索的目錄 
                    .setSearchType(SearchType.DEFAULT)// Query type                 
                    .setQuery(QueryBuilders.disMaxQuery() 
                              .add(QueryBuilders.matchQuery("name", searchParam.getKeyword())) 
                              .add(QueryBuilders.matchQuery("disease_tag", searchParam.getKeyword())) 
                              //城市 

//                                  .add(QueryBuilders.matchQuery("city", searchParam.getCity()))  
)    
.addHighlightedField("name")
.addHighlightedField("disease_tag")
.setHighlighterPreTags(FIELD_HIGHLIGHT_PRE_TAG)
.setHighlighterPostTags(FIELD_HIGHLIGHT_POST_TAG)
.setFrom(from).setSize(size).setExplain(true))
.execute().actionGet();// 執(zhí)行

            SearchResultVo searchResultVo = new SearchResultVo(); 
            List<BdDiseaseRpc> diseaseList = new ArrayList<BdDiseaseRpc>(); 
            List<BdDoctorRpc> doctorList = new ArrayList<BdDoctorRpc>(); 
            if(response.getResponses() != null) {  
                MultiSearchResponse.Item diseaseItem = response.getResponses().length>0?(response.getResponses())[0]:null; 
                MultiSearchResponse.Item doctorItem = response.getResponses().length>1?(response.getResponses())[1]:null; 

                if(diseaseItem!=null){ 
                    SearchResponse diseasResp = diseaseItem.getResponse(); 
                    System.out.println("命中疾病條數(shù): " + diseasResp.getHits().getTotalHits()); 

                    searchResultVo.setDiseaseTotal(diseasResp.getHits().getTotalHits()); 
                    for (SearchHit hits : diseasResp.getHits().getHits()) {             
                        Map<String, Object> sourceAsMap = hits.sourceAsMap(); 
                         //獲取對(duì)應(yīng)的高亮域 
                        Map<String, HighlightField> result = hits.highlightFields();   

                        //從設(shè)定的高亮域中取得指定域 
                        HighlightField highlightFieldText = result.get("name");   
                        String code = (String)sourceAsMap.get("code"); 
                        HighlightField introField = result.get("intro"); 

                        String name = getHighlightFieldText(highlightFieldText); 
                        name = StringUtils.isEmpty(name)?(String)sourceAsMap.get("name"):name; 
                        String intro = getHighlightFieldText(introField); 
                        intro = StringUtils.isEmpty(intro)?(String)sourceAsMap.get("intro"):intro; 

                        BdDiseaseRpc bdDiseaseRpc = new BdDiseaseRpc(); 
                        bdDiseaseRpc.setName(name); 
                        bdDiseaseRpc.setCode(code); 
                        bdDiseaseRpc.setIntro(intro);                     
                        diseaseList.add(bdDiseaseRpc); 
                    } 

                    searchResultVo.setDiseaseList(diseaseList); 
                } 

                if(doctorItem!=null){ 
                    SearchResponse doctorResp = doctorItem.getResponse(); 
                    System.out.println("命中醫(yī)生條數(shù): " + doctorResp.getHits().getTotalHits()); 
                    searchResultVo.setDoctorTotal(doctorResp.getHits().getTotalHits()); 
                    for (SearchHit hits : doctorResp.getHits().getHits()) {             
                        Map<String, Object> sourceAsMap = hits.sourceAsMap(); 
                         //獲取對(duì)應(yīng)的高亮域 
                        Map<String, HighlightField> result = hits.highlightFields();   
                        //從設(shè)定的高亮域中取得指定域 
                        HighlightField highlightFieldText = result.get("name");   
                        String code = (String)sourceAsMap.get("code"); 
                        HighlightField diseaseTagField = result.get("disease_tag"); 

                        String name = getHighlightFieldText(highlightFieldText); 
                        name = StringUtils.isEmpty(name)?(String)sourceAsMap.get("name"):name; 

                        String diseaseTag = getHighlightFieldText(diseaseTagField); 
                        diseaseTag = StringUtils.isEmpty(diseaseTag)?(String)sourceAsMap.get("disease_tag"):diseaseTag; 

                        BdDoctorRpc bdDoctorRpc = new BdDoctorRpc(); 
                        bdDoctorRpc.setName(name); 
                        bdDoctorRpc.setCode(code); 
                        bdDoctorRpc.setDiseaseTag(diseaseTag); 
                        doctorList.add(bdDoctorRpc); 
                    } 
                    searchResultVo.setDoctorList(doctorList); 
                } 

            } 

    return searchResultVo; 
}

以上代碼搜索疾病信息中的名字與簡(jiǎn)介,同時(shí)搜索了疾病和醫(yī)生兩個(gè)索引

設(shè)置分頁(yè)查詢

.setFrom(from).setSize(size).setExplain(true))

3高亮信息

設(shè)置高亮顯示信息首尾包裹的標(biāo)簽

public static final String FIELD_HIGHLIGHT_PRE_TAG = "<span style=\"color:red\">"; 

public static final String FIELD_HIGHLIGHT_POST_TAG = "</span>";

            .setHighlighterPreTags(FIELD_HIGHLIGHT_PRE_TAG) 
            .setHighlighterPostTags(FIELD_HIGHLIGHT_POST_TAG)


獲取高亮顯示的結(jié)果信息

//從設(shè)定的高亮域中取得指定域
HighlightField highlightFieldText = result.get("name");  
String code = (String)sourceAsMap.get("code");
HighlightField introField = result.get("intro");

        String highlight = getHighlightFieldText(highlightFieldText); 
        String intro = getHighlightFieldText(introField);
public String getHighlightFieldText(HighlightField highlightFieldText){ 
    if(highlightFieldText==null){ 
        return ""; 
    } 
    //取得定義的高亮標(biāo)簽 
    Text[] higlightTexts =  highlightFieldText.fragments(); 

    //為title串值增加自定義的高亮標(biāo)簽 
    String higlightText = "";   
    for(Text text : higlightTexts){     
        higlightText += text;   
    } 
    return higlightText; 
}
向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI