SpringBoot2.3整合ElasticSearch7.6_elasticsearch7.6 下载地址-程序员宅基地

技术标签: spring boot  java  elasticsearch  es  

SpringBoot2.3.4整合ElasticSearch7.6.2

Elasticsearch下载地址 https://www.elastic.co/cn/downloads/elasticsearch

kibana下载地址https://www.elastic.co/cn/downloads/kibana

elasticsearch-analysis-ik 下载地址https://github.com/medcl/elasticsearch-analysis-ik/releases

前三小节简单介绍如何安装,ES7最新版整合在后面

Elasticsearch

  • 分布式,无需人工搭建集群(solr就需要人为配置,使用Zookeeper作为注册中心)
  • Restful风格,一切API都遵循Rest原则,容易上手
  • 近实时搜索,数据更新在Elasticsearch中几乎是完全同步的。

Elasticsearch下载地址 https://www.elastic.co/cn/downloads/elasticsearch

我使用的是7.6.2版本,

Linux安装Elasticsearch

将安装包上传到:/home/moon/ 目录

解压缩

tar xvf elasticsearch-7.6.2.tar.gz

目录重命名

mv elasticsearch-7.6.2/ elasticsearch
# 修改权限
chown moon:moon -R elasticsearch

进入config目录

cd elasticsearch/config/

修改elasticsearch.yml

vim elasticsearch.yml

修改数据和日志目录:

path.data: /home/moon/elasticsearch/data # 数据目录位置
path.logs: /home/moon/elasticsearch/logs # 日志目录位置

修改绑定的ip:

network.host: 0.0.0.0 # 绑定到0.0.0.0,允许任何ip来访问

默认只允许本机访问,修改为0.0.0.0后则可以远程访问

目前我们是做的单机安装,如果要做集群,只需要在这个配置文件中添加其它节点信息即可。

elasticsearch.yml的其它可配置信息:

属性名 说明
cluster.name 配置elasticsearch的集群名称,默认是elasticsearch。建议修改成一个有意义的名称。
node.name 节点名,es会默认随机指定一个名字,建议指定一个有意义的名称,方便管理
path.conf 设置配置文件的存储路径,tar或zip包安装默认在es根目录下的config文件夹,rpm安装默认在/etc/ elasticsearch
path.data 设置索引数据的存储路径,默认是es根目录下的data文件夹,可以设置多个存储路径,用逗号隔开
path.logs 设置日志文件的存储路径,默认是es根目录下的logs文件夹
path.plugins 设置插件的存放路径,默认是es根目录下的plugins文件夹
bootstrap.memory_lock 设置为true可以锁住ES使用的内存,避免内存进行swap
network.host 设置bind_host和publish_host,设置为0.0.0.0允许外网访问
http.port 设置对外服务的http端口,默认为9200。
transport.tcp.port 集群结点之间通信端口
discovery.zen.ping.timeout 设置ES自动发现节点连接超时的时间,默认为3秒,如果网络延迟高可设置大些
discovery.zen.minimum_master_nodes 主结点数量的最少值 ,此值的公式为:(master_eligible_nodes / 2) + 1 ,比如:有3个符合要求的主结点,那么这里要设置为2

进入Elasticsearch的根目录,然后创建:

mkdir data
mkdir logs

运行

进入elasticsearch/bin目录,可以看到下面的执行文件:

在这里插入图片描述

然后输入命令:

./elasticsearch

报错1

[1]: max file descriptors [4096] for elasticsearch process likely too low, increase to at least [65536]

我们用的是moon用户,而不是root,所以文件权限不足。

首先用root用户登录。

然后修改配置文件:

vim /etc/security/limits.conf

添加下面的内容:

* soft nofile 65536

* hard nofile 131072

* soft nproc 4096

* hard nproc 4096

报错2

[2]: max virtual memory areas vm.max_map_count [65530] likely too low, increase to at least [262144]

继续修改配置文件:

vim /etc/sysctl.conf 

添加下面内容:

vm.max_map_count=655360

然后执行命令:

sysctl -p

报错3

ERROR: [1] bootstrap checks failed
[1]: the default discovery settings are unsuitable for production use; at least one of [discovery.seed_hosts, discovery.seed_providers, cluster.initial_master_nodes] must be configured

使用用户角色moon,进入elasticsearch.yml

cd elasticsearch/config/
vim elasticsearch.yml

修改配置

cluster.initial_master_nodes: ["node-1"]

在这里插入图片描述

重启终端窗口、启动

所有错误修改完毕,一定要重启你的 Xshell终端,否则配置无效

再次启动,终于成功了!

在这里插入图片描述

我们在浏览器中访问:http://192.168.5.129:9200

在这里插入图片描述

使用不做介绍

Kibana

Kibana是一个基于Node.js的Elasticsearch索引库数据统计工具,可以利用Elasticsearch的聚合功能,生成各种图表,如柱形图,线状图,饼图等。

而且还提供了操作Elasticsearch索引数据的控制台,并且提供了一定的API提示

kibana下载地址https://www.elastic.co/cn/downloads/kibana

我同样下载7.6.2版本

安装

因为Kibana依赖于node,需要在windows下先安装Node.js

安装过程不介绍

在黑窗口输入:

node -v

可以查看到node版本,如下:

在这里插入图片描述

然后安装kibana,与elasticsearch保持一致

解压即可:

配置运行

配置

进入安装目录下的config目录,修改kibana.yml文件:

修改elasticsearch服务器的地址:

elasticsearch.hosts: ["http://192.168.5.129:9200"]

运行

进入安装目录下的bin目录:

在这里插入图片描述

双击运行:

在这里插入图片描述

kibana的监听端口是5601

我们访问:http://127.0.0.1:5601

在这里插入图片描述

使用不做介绍

ik分词器

elasticsearch-analysis-ik 下载地址https://github.com/medcl/elasticsearch-analysis-ik/releases

同样7.6.2版本

安装

上传下载的tar包,解压到Elasticsearch目录的plugins目录中:

tar xvf elasticsearch-analysis-ik-7.6.2.tar.gz

得到一个名为elasticsearch的目录:

改名为ik-analyzer

mv elasticsearch ik-analyzer
chown moon:moon ik-analyzer/ -R

然后重启elasticsearch

在这里插入图片描述

使用不做介绍

SpringDataElasticsearch

搭建SpringBoot工程并添加依赖

pom.xml

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.3.4.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>spring-data-elastic</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>elastic</name>
<description>Demo project for Spring Boot</description>

<properties>
    <java.version>1.8</java.version>
</properties>

<dependencies>
<!--	SpringDataElasticsearch的启动器-->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
        <groupId>org.projectlombok</groupId>
        <artifactId>lombok</artifactId>
        <optional>true</optional>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
        <exclusions>
            <exclusion>
                <groupId>org.junit.vintage</groupId>
                <artifactId>junit-vintage-engine</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
</dependencies>
<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>
</project>

application.yml配置

spring:
  elasticsearch:
    rest:
      uris: http://192.168.5.129:9200 #ip是我的虚拟机地址

创建实体类

@Data
@AllArgsConstructor
@NoArgsConstructor
@Document(indexName = "shop",replicas = 0)
public class Book {
    
    @Id
    private long id;

    @Field(type = FieldType.Integer , index = false)
    private int count;

    @Field(type = FieldType.Keyword )
    private String author;

    @Field(type = FieldType.Text , analyzer = "ik_max_word")
    private String descr;

    @Field(type = FieldType.Text , analyzer = "ik_max_word")
    private String name;
    
    @Field(type = FieldType.Date  ,format = DateFormat.basic_date_time)
    private Instant onSale;
}

几个用到的注解:

  • @Document:声明索引库配置
    • indexName:索引库名称
    • type:映射类型。如果未设置,则使用小写的类的简单名称。(从版本4.0开始不推荐使用)
    • shards:分片数量,默认5
    • replicas:副本数量,默认1
  • @Id:声明实体类的id
  • @Field:声明字段属性
    • type:字段的数据类型
    • analyzer:指定分词器类型
    • index:是否创建索引

执行测试

@RestController
@Slf4j
public class ElasticController {
    
    @Autowired
    private ElasticsearchRestTemplate esTemplate;

    @GetMapping("/create")
    public String  contextLoads() {
    
        IndexOperations indexOperations = esTemplate.indexOps(Book.class);
        Document document = indexOperations.createMapping();
        return indexOperations.putMapping(document)?"成功":"失败";

    }
}

查看索引库

在这里插入图片描述

索引数据操作

SDE的索引数据CRUD并没有封装在ElasticsearchTemplate中,而是有一个叫做ElasticsearchRepository的接口:

我们自定义接口,继承ElasticsearchRespository:

package com.example.springdataelastic.repository;

import com.example.springdataelastic.pojo.Book;
import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;

public interface ShopRepository extends ElasticsearchRepository<Book,Long> {
    
}

创建索引数据

单个创建

//一定要使用自定义的Repository接口
@Autowired
private ShopRepository repository;

@GetMapping("/add")
public void addDocument() throws ParseException {
    
    repository.save(new Book(1L,99999,"余华","生亦何欢,死亦何苦","活着", Instant.now()));
}

通过kibana工具查看数据

在这里插入图片描述

批量创建

@GetMapping("/addAll")
public void addAllDocument() throws ParseException {
    
    List<Book> list = new ArrayList<>();
    list.add(new Book(6L,99999,"无名","合理组织数据,高效处理数据","数据结构"));
    list.add(new Book(2L,99000,"aa","aaDesc","aaName", Instant.now()));
    list.add(new Book(3L,963399,"bb","bbDesc","bbName", Instant.now()));
    list.add(new Book(4L,19999,"cc","ccDesc","ccName", Instant.now()));
    list.add(new Book(5L,991000,"dd","ddDesc","ddName", Instant.now()));

    repository.saveAll(list);
}

在这里插入图片描述

自定义查询

语法查看官方文档 [8.2. Query methods] 介绍,非常全面

https://docs.spring.io/spring-data/elasticsearch/docs/current/reference/html/

public interface ShopRepository extends ElasticsearchRepository<Book,Long> {
    

    /**
     * 根据id范围查询
     * @param min 最小值
     * @param max 最大值
     * @param page 分页信息
     * @return 查询集合
     */
    Page<Book> findByIdBetween(int min, int max, Pageable page);
}
@GetMapping("/demo1/{page}")
public Page<Book> queryDemo1(@PathVariable("page") int page){
    
    /*
         * PageRequest.of(page, size);
         * page 当前页码  从0开始
         * size 每页个数
         */
    Pageable pageable = PageRequest.of(page, 3);
    return repository.findByIdBetween(1,5,pageable);
}

在这里插入图片描述

自定义高亮结果

高亮原理:

  • 服务端搜索数据,得到搜索结果
  • 把搜索结果中,搜索关键字都加上约定好的标签
  • 前端页面提前写好标签的CSS样式,即可高亮

官方文档介绍:8.4. Annotations for repository methods

https://docs.spring.io/spring-data/elasticsearch/docs/current/reference/html/#elasticsearch.repositories

从Spring-Data-Elasticsearch4.0开始,支持使用@Highlight注解

public interface ShopRepository extends ElasticsearchRepository<Book,Long> {
    

    //.....
    
    /**
     * 根据书名 或 描述查询
     * @param name 书名
     * @param desc 描述
     * @return
     */
    @Highlight(fields={
    
            @HighlightField(name="name"),
            @HighlightField(name="descr")
    })
    List<SearchHit<Book>> findByNameOrDescr(String name, String desc);
}

@HighlightField(name="***")

要应用突出显示的字段的名称。该名称必须是实体属性的字段名称,而不是索引映射中字段的名称

@GetMapping("/demo2/{name}/{desc}")
public
    List<SearchHit<Book>> queryDemo2(@PathVariable("name") String name,
                                     @PathVariable("desc") String desc){
    

    log.info("执行方法:findByNameOrDescr(name,desc);param[0]="+name+";param[1]="+desc);
    return repository.findByNameOrDescr(name,desc);
}

在搜索结果中,突出显示的数据可以从SearchHit类中检索。

在这里插入图片描述

自定义高亮遇到的问题:

在SpringBoot+MybatisPlus+ES+thymeleaf的一个快速上手项目测试中,发现包在高亮字段外面的标签

<em></em>在浏览器中被转义了,导致高亮效果无法达到预期效果。

在这里插入图片描述

在这里插入图片描述

原因:

在thymeleaf模板中使用了 th:text,输出时候会把特殊字符转义,导致直接输出标签文本

<a th:if="${not #maps.isEmpty(item.highlightFields)}"
   th:text="${item.highlightFields.name.get(0)}"></a>

<a th:unless="${not #maps.isEmpty(item.highlightFields)}" 
   th:text="${item.content.name}"></a>

解决办法:

把th:text改成th:utext

<a th:if="${not #maps.isEmpty(item.highlightFields)}"
   th:utext="${item.highlightFields.name.get(0)}"></a>
<a th:unless="${not #maps.isEmpty(item.highlightFields)}"
   th:utext="${item.content.name}"></a>

最终效果:

在这里插入图片描述

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/weixin_42385395/article/details/109315087

智能推荐

使用nginx解决浏览器跨域问题_nginx不停的xhr-程序员宅基地

文章浏览阅读1k次。通过使用ajax方法跨域请求是浏览器所不允许的,浏览器出于安全考虑是禁止的。警告信息如下:不过jQuery对跨域问题也有解决方案,使用jsonp的方式解决,方法如下:$.ajax({ async:false, url: 'http://www.mysite.com/demo.do', // 跨域URL ty..._nginx不停的xhr

在 Oracle 中配置 extproc 以访问 ST_Geometry-程序员宅基地

文章浏览阅读2k次。关于在 Oracle 中配置 extproc 以访问 ST_Geometry,也就是我们所说的 使用空间SQL 的方法,官方文档链接如下。http://desktop.arcgis.com/zh-cn/arcmap/latest/manage-data/gdbs-in-oracle/configure-oracle-extproc.htm其实简单总结一下,主要就分为以下几个步骤。..._extproc

Linux C++ gbk转为utf-8_linux c++ gbk->utf8-程序员宅基地

文章浏览阅读1.5w次。linux下没有上面的两个函数,需要使用函数 mbstowcs和wcstombsmbstowcs将多字节编码转换为宽字节编码wcstombs将宽字节编码转换为多字节编码这两个函数,转换过程中受到系统编码类型的影响,需要通过设置来设定转换前和转换后的编码类型。通过函数setlocale进行系统编码的设置。linux下输入命名locale -a查看系统支持的编码_linux c++ gbk->utf8

IMP-00009: 导出文件异常结束-程序员宅基地

文章浏览阅读750次。今天准备从生产库向测试库进行数据导入,结果在imp导入的时候遇到“ IMP-00009:导出文件异常结束” 错误,google一下,发现可能有如下原因导致imp的数据太大,没有写buffer和commit两个数据库字符集不同从低版本exp的dmp文件,向高版本imp导出的dmp文件出错传输dmp文件时,文件损坏解决办法:imp时指定..._imp-00009导出文件异常结束

python程序员需要深入掌握的技能_Python用数据说明程序员需要掌握的技能-程序员宅基地

文章浏览阅读143次。当下是一个大数据的时代,各个行业都离不开数据的支持。因此,网络爬虫就应运而生。网络爬虫当下最为火热的是Python,Python开发爬虫相对简单,而且功能库相当完善,力压众多开发语言。本次教程我们爬取前程无忧的招聘信息来分析Python程序员需要掌握那些编程技术。首先在谷歌浏览器打开前程无忧的首页,按F12打开浏览器的开发者工具。浏览器开发者工具是用于捕捉网站的请求信息,通过分析请求信息可以了解请..._初级python程序员能力要求

Spring @Service生成bean名称的规则(当类的名字是以两个或以上的大写字母开头的话,bean的名字会与类名保持一致)_@service beanname-程序员宅基地

文章浏览阅读7.6k次,点赞2次,收藏6次。@Service标注的bean,类名:ABDemoService查看源码后发现,原来是经过一个特殊处理:当类的名字是以两个或以上的大写字母开头的话,bean的名字会与类名保持一致public class AnnotationBeanNameGenerator implements BeanNameGenerator { private static final String C..._@service beanname

随便推点

二叉树的各种创建方法_二叉树的建立-程序员宅基地

文章浏览阅读6.9w次,点赞73次,收藏463次。1.前序创建#include&lt;stdio.h&gt;#include&lt;string.h&gt;#include&lt;stdlib.h&gt;#include&lt;malloc.h&gt;#include&lt;iostream&gt;#include&lt;stack&gt;#include&lt;queue&gt;using namespace std;typed_二叉树的建立

解决asp.net导出excel时中文文件名乱码_asp.net utf8 导出中文字符乱码-程序员宅基地

文章浏览阅读7.1k次。在Asp.net上使用Excel导出功能,如果文件名出现中文,便会以乱码视之。 解决方法: fileName = HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8);_asp.net utf8 导出中文字符乱码

笔记-编译原理-实验一-词法分析器设计_对pl/0作以下修改扩充。增加单词-程序员宅基地

文章浏览阅读2.1k次,点赞4次,收藏23次。第一次实验 词法分析实验报告设计思想词法分析的主要任务是根据文法的词汇表以及对应约定的编码进行一定的识别,找出文件中所有的合法的单词,并给出一定的信息作为最后的结果,用于后续语法分析程序的使用;本实验针对 PL/0 语言 的文法、词汇表编写一个词法分析程序,对于每个单词根据词汇表输出: (单词种类, 单词的值) 二元对。词汇表:种别编码单词符号助记符0beginb..._对pl/0作以下修改扩充。增加单词

android adb shell 权限,android adb shell权限被拒绝-程序员宅基地

文章浏览阅读773次。我在使用adb.exe时遇到了麻烦.我想使用与bash相同的adb.exe shell提示符,所以我决定更改默认的bash二进制文件(当然二进制文件是交叉编译的,一切都很完美)更改bash二进制文件遵循以下顺序> adb remount> adb push bash / system / bin /> adb shell> cd / system / bin> chm..._adb shell mv 权限

投影仪-相机标定_相机-投影仪标定-程序员宅基地

文章浏览阅读6.8k次,点赞12次,收藏125次。1. 单目相机标定引言相机标定已经研究多年,标定的算法可以分为基于摄影测量的标定和自标定。其中,应用最为广泛的还是张正友标定法。这是一种简单灵活、高鲁棒性、低成本的相机标定算法。仅需要一台相机和一块平面标定板构建相机标定系统,在标定过程中,相机拍摄多个角度下(至少两个角度,推荐10~20个角度)的标定板图像(相机和标定板都可以移动),即可对相机的内外参数进行标定。下面介绍张氏标定法(以下也这么称呼)的原理。原理相机模型和单应矩阵相机标定,就是对相机的内外参数进行计算的过程,从而得到物体到图像的投影_相机-投影仪标定

Wayland架构、渲染、硬件支持-程序员宅基地

文章浏览阅读2.2k次。文章目录Wayland 架构Wayland 渲染Wayland的 硬件支持简 述: 翻译一篇关于和 wayland 有关的技术文章, 其英文标题为Wayland Architecture .Wayland 架构若是想要更好的理解 Wayland 架构及其与 X (X11 or X Window System) 结构;一种很好的方法是将事件从输入设备就开始跟踪, 查看期间所有的屏幕上出现的变化。这就是我们现在对 X 的理解。 内核是从一个输入设备中获取一个事件,并通过 evdev 输入_wayland

推荐文章

热门文章

相关标签