• java直接使用dsl语句查询ES


    pom

    <dependency>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-starter-data-elasticsearchartifactId>
            dependency>
            <dependency>
                <groupId>org.springframework.datagroupId>
                <artifactId>spring-data-elasticsearchartifactId>
            dependency>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    客户端配置

    import lombok.Data;
    import org.apache.http.HttpHost;
    import org.elasticsearch.client.RestClient;
    import org.elasticsearch.client.RestClientBuilder;
    import org.elasticsearch.client.RestHighLevelClient;
    import org.springframework.context.annotation.Configuration;
    import org.springframework.data.elasticsearch.config.AbstractElasticsearchConfiguration;
    
    
    
    @Configuration
    @Data
    public class ElasticsearchConfig extends AbstractElasticsearchConfiguration {
        private String host="localhost";
        private Integer port=9200;
        @Override
        public RestHighLevelClient elasticsearchClient() {
            RestClientBuilder builder = RestClient.builder(new HttpHost(host,port));
            RestHighLevelClient restHighLevelClient = new RestHighLevelClient(builder);
            return restHighLevelClient;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22

    dsl查询

    import com.alibaba.fastjson.JSONObject;
    import org.elasticsearch.action.search.SearchRequest;
    import org.elasticsearch.action.search.SearchResponse;
    import org.elasticsearch.client.RequestOptions;
    import org.elasticsearch.client.RestHighLevelClient;
    import org.elasticsearch.index.query.WrapperQueryBuilder;
    import org.elasticsearch.search.builder.SearchSourceBuilder;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.web.bind.annotation.PostMapping;
    import org.springframework.web.bind.annotation.RequestBody;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    import java.io.IOException;
    
    @RestController
    @RequestMapping("/es-client2")
    public class EsClientController2 {
        @Autowired
        private RestHighLevelClient rstHighLevelClient;
    
    
        @PostMapping("/query2")
        public SearchResponse userEsClient(
                @RequestBody JSONObject body
        ) throws IOException {
            String index_name = body.getOrDefault("index_name", "").toString();
            System.out.println("body:" + body);
    
            String json = "{\"query\": {\"match\": {\"title\": \"hello world\"}}}";
            //language=JSON5
            String dsl = "{\n" +
                    "  \"match_all\": {}\n" +
                    "}";
    
    
            WrapperQueryBuilder queryBuilder = new WrapperQueryBuilder(dsl);
            SearchRequest searchRequest = new SearchRequest();
            SearchSourceBuilder searchSourceBuilder = new SearchSourceBuilder();
            // 设置分页
            searchSourceBuilder.query(queryBuilder).from((int) 1).size((int) 10);
            searchRequest.source(searchSourceBuilder).indices(index_name);
            SearchResponse searchResp = rstHighLevelClient.search(searchRequest, RequestOptions.DEFAULT);
            // 计算返回的条数
    
    
            return searchResp;
        }
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50

    结果

    在这里插入图片描述

  • 相关阅读:
    【SHUD】SHUD模型Windows下的编译过程
    【Python数据科学快速入门系列 | 02】创建ndarray对象的十多种方法
    mysql进阶:数据库审计软件yearning搭建指南
    java 线程池
    Linux ARM平台开发系列讲解(调试篇) 1.6.4 NVIDIA AGX Xavier以太网MAC TO MAC模式
    Node.js的多版本管理工具 gnvm(win环境)的详细安装教程(图解步骤、通俗易懂、亲测有效)
    [附源码]计算机毕业设计JAVA高校新生报到管理系统
    【C语言数据结构】二叉树及其遍历算法
    电脑多开微信教程,可以多开n个
    如何实现条件组合组件
  • 原文地址:https://blog.csdn.net/JavaBigData/article/details/134230068