注解式elasticsearch+SpringBoot(附分布式配置)

注解式elasticsearch+SpringBoot(附分布式配置)前言:以前使用的是RestHighLevelClient客户端,使用起来一大堆的类相互嵌套,特别是agg操作,代码十分惨烈。架构:使用方式与mybatis类似,采用xml的形式,将dsl与代码分离。示例用了swagger2和lombok。需知:必须学会DSL语法(看半小时差不多就会了吧)。依赖:<dependency><group…

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全家桶1年46,售后保障稳定

前言:以前使用的是Rest High Level Client客户端,使用起来一大堆的类相互嵌套,特别是agg操作,代码十分惨烈。

架构:使用方式与mybatis类似,采用xml的形式,将dsl与代码分离。示例用了swagger2和lombok。

需知:必须学会DSL语法(看半小时差不多就会了吧)。


依赖:

<dependency>
            <groupId>com.bbossgroups.plugins</groupId>
            <artifactId>bboss-elasticsearch-spring-boot-starter</artifactId>
            <version>5.9.5</version>
        </dependency>

Jetbrains全家桶1年46,售后保障稳定

配置:

server:
  port: 3000
spring:
  datasource:
    driver-class-name: com.mysql.jdbc.Driver
    url: jdbc:mysql://xxxxxxxxxxxxx/xxxxx?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&failOverReadOnly=false&useSSL=false&serverTimezone=Asia/Shanghai
    username: root
    password: **********
  #      type: com.alibaba.druid.pool.DruidDataSource
  elasticsearch:
    bboss:
      elasticUser: elastic
      elasticPassword: changeme
      elasticsearch:
        rest:
          hostNames: xxx.xxx.xxx.xxx:9200
          ##hostNames: 192.168.8.25:9200,192.168.8.26:9200,192.168.8.27:9200  ##集群地址配置
        dateFormat: yyyy.MM.dd
        timeZone: Asia/Shanghai
        ttl: 2d
        showTemplate: true
        discoverHost: false
      dslfile:
        refreshInterval: -1
      http:
        timeoutConnection: 5000
        timeoutSocket: 5000
        connectionRequestTimeout: 5000
        retryTime: 1
        maxLineLength: -1
        maxHeaderCount: 200
        maxTotal: 400
        defaultMaxPerRoute: 200
        soReuseAddress: false
        soKeepAlive: false
        timeToLive: 3600000
        keepAlive: 3600000
        keystore:
        keyPassword:
        hostnameVerifier:

使用示例:

实体类:

import com.frameworkset.orm.annotation.ESId;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * TODO
 *
 * @author sunziwen
 * @version 1.0
 * @date 2019/12/12 14:53
 **/
@Data
@AllArgsConstructor
@NoArgsConstructor
@Builder
public class Person{
    @ESId
    private Integer personId;
    private String name;
    private Integer age;
    private String introduction;
}

测试:

package com.example.layer.controller;

import com.example.layer.entity.Person;
import io.swagger.annotations.ApiOperation;
import org.frameworkset.elasticsearch.boot.BBossESStarter;
import org.frameworkset.elasticsearch.client.ClientInterface;
import org.frameworkset.elasticsearch.entity.ESDatas;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

import java.util.ArrayList;
import java.util.HashMap;

/**
 * TODO
 *
 * @author sunziwen
 * @version 1.0
 * @date 2019/12/12 13:32
 **/
@RestController
public class TestController {
    private final BBossESStarter bBossESStarter;

    public TestController(BBossESStarter bBossESStarter) {
        this.bBossESStarter = bBossESStarter;
    }

    @PostMapping("test_create")
    @ApiOperation("创建索引")
    public Object create() {
        ClientInterface restClient = bBossESStarter.getConfigRestClient("elasticsearch/person.xml");
        return restClient.createIndiceMapping("person", "createPersonIndice");
    }

    @PostMapping("test_add")
    @ApiOperation("添加文档")
    public Object add() {
        ClientInterface restClient = bBossESStarter.getRestClient();
        Person person = Person.builder()
                              .personId(-1)
                              .name("张三丰")
                              .age(100)
                              .introduction("武当创始人")
                              .build();
        return restClient.addDocument("person", "person", person, "refresh");
    }

    @PostMapping("test_adds")
    @ApiOperation("批量添加文档")
    public Object adds() {
        ClientInterface restClient = bBossESStarter.getRestClient();
        ArrayList<Person> people = new ArrayList<>();
        for (int i = 0; i < 1000; i++) {
            Person person = Person.builder()
                                  .personId(i)
                                  .name("张三丰" + i)
                                  .age(100 + i * 2)
                                  .introduction("武当创始人" + i * 3)
                                  .build();
            people.add(person);
        }
        return restClient.addDocuments("person", "person", people, "refresh");
    }

    @PostMapping("test_getById")
    @ApiOperation("Id获取文档")
    public Object getById(@RequestParam Integer id) {
        ClientInterface restClient = bBossESStarter.getRestClient();
        return restClient.getDocument("person", "person", id + "", Person.class);
    }

    @PostMapping("test_search")
    @ApiOperation("检索")
    public Object search() {
        ClientInterface restClient = bBossESStarter.getConfigRestClient("elasticsearch/person.xml");
        HashMap<String, Object> params = new HashMap<>(2);
        params.put("min", 100);
        params.put("max", 300);
        params.put("size", 100);
        ESDatas<Person> searchRange = restClient.searchList("person/_search", "searchRange", params, Person.class);
        return searchRange;
    }
}

XML:

<properties>
    <property name="createPersonIndice">
        <![CDATA[{
            "settings": {
                "number_of_shards": 1,
                "index.refresh_interval": "5s"
            },
            "mappings": {
                "person": {
                    "properties": {
                        "id":{
                            "type":"long"
                        },
                        "name": {
                            "type": "keyword"
                        },
                        "age":{
                            "type":"long"
                        },
                        "introduction": {
                            "type": "text"
                        }
                    }
                }
            }
        }]]>
    </property>
    <property name="searchRange">
        <![CDATA[{
            "query": {
                "bool": {
                    "filter": [
                        {
                            "range": {
                                "age": {
                                    "gte": #[min],
                                    "lt": #[max]
                                }
                            }
                        }
                    ]
                }
            },
            "size":#[size]
        }]]>

    </property>
</properties>

分布式配置:

这里为了方便懒得建分布式项目了。在启动时从分布式配置中心拿到相应的配置后…(这里我直接写死了)

注解式elasticsearch+SpringBoot(附分布式配置)

有疑问家sunziwen3366备注csdn

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/215466.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • TDSCDMA SIB content[通俗易懂]

    TDSCDMA SIB content[通俗易懂]SIB1:包括NAS系统信息,UE在空闲态和连接态下所使用的定时器和常数信息。 SIB2:URAID信息。 SIB3:小区选择和重选的参数,包括Cellidentity、Cellselectionandre-selectioninfo和CellAccessRestriction三个信息IE。下面对这些IE的内容进行深入剖析。   

    2022年10月4日
    0
  • Java内存模型是什么,为什么要有Java内存模型,Java内存模型解决了什么问题等。。。

    Java内存模型是什么,为什么要有Java内存模型,Java内存模型解决了什么问题等。。。本文中,有很多定义和说法,都是笔者自己理解后定义出来的。希望能够让读者可以对Java内存模型有更加清晰的认识。当然,如有偏颇,欢迎指正。 为什么要有内存模型 在介绍Java内存模型之前,先来看一下到底什么是计算机内存模型,然后再来看Java内存模型在计算机内存模型的基础上做了哪些事情。要说计算机的内存模型,就要说一下一段古老的历史,看一下为什么要有内存模型。内存模型,英文名…

    2022年7月8日
    17
  • dede表前缀不定时,查询表#@__archives

    dede表前缀不定时,查询表#@__archives

    2021年9月24日
    38
  • 基于人脸识别的考勤系统:Python3 + Qt5 + OpenCV3 + FaceNet + MySQL

    基于人脸识别的考勤系统:Python3 + Qt5 + OpenCV3 + FaceNet + MySQL本项目使用Python3.8编写,QtDesigner(QT5)设计主界面,PyQt5库编写控件的功能,使用开源FaceNet人脸识别算法进行人脸识别,使用眨眼检测来实现活体识别,使用OpenCV3实现实时人脸识别。同时,将班级学生信息,各班级学生人数、考勤信息录入到MySQL数据库中,方便集中统一化管理。因为本项目仅由我一个人开发,能力精力有限,实现了预期的绝大多数功能,但是活体检测功能还存在bug,如果小伙伴对本项目中有不懂的地方或者发现问题,欢迎提出。

    2022年5月13日
    41
  • 大数运算c++

    大数运算c++大数加法stringadd(strings1,strings2){if(s1.length()=0;i–,j–

    2022年10月6日
    0
  • 电话光端机

    电话光端机

    2021年7月28日
    66

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号