当前位置: 首页 > news >正文

广西远伟网络科技有限公司东莞百度推广排名优化

广西远伟网络科技有限公司,东莞百度推广排名优化,小程序代运营多少钱一个月,wordpress图片文件目录前言 最近华为云云耀云服务器L实例上新,也搞了一台来玩,期间遇到各种问题,在解决问题的过程中学到不少和运维相关的知识。 在前几期的博客中,介绍了Elasticsearch的Docker版本的安装,Elasticsearch的可视化Kibana工具…

在这里插入图片描述

前言

最近华为云云耀云服务器L实例上新,也搞了一台来玩,期间遇到各种问题,在解决问题的过程中学到不少和运维相关的知识。

在前几期的博客中,介绍了Elasticsearch的Docker版本的安装,Elasticsearch的可视化Kibana工具安装,以及IK分词器的安装。

本篇博客介绍Elasticsearch的springboot整合,以及Kibana进行全查询和模糊查询。

其他相关的Elasticsearch的文章列表如下:

  • Elasticsearch的Docker版本的安装和参数设置 & 端口开放和浏览器访问

  • Elasticsearch的可视化Kibana工具安装 & IK分词器的安装和使用

在这里插入图片描述

其他相关的华为云云耀云服务器L实例评测文章列表如下:

  • 初始化配置SSH连接 & 安装MySQL的docker镜像 & 安装redis以及主从搭建 & 7.2版本redis.conf配置文件

  • 安装Java8环境 & 配置环境变量 & spring项目部署 &【!】存在问题未解决

  • 部署spring项目端口开放问题的解决 & 服务器项目环境搭建MySQL,Redis,Minio…指南

  • 由于自己原因导致MySQL数据库被攻击 & MySQL的binlog日志文件的理解

  • 认识redis未授权访问漏洞 & 漏洞的部分复现 & 设置连接密码 & redis其他命令学习

  • 拉取创建canal镜像配置相关参数 & 搭建canal连接MySQL数据库 & spring项目应用canal初步

  • Docker版的Minio安装 & Springboot项目中的使用 & 结合vue进行图片的存取

  • 在Redis的Docker容器中安装BloomFilter & 在Spring中使用Redis插件版的布隆过滤器

文章目录

  • 前言
  • 引出
  • springBoot整合elasticsearch
    • 1.引入依赖
    • 2.配置yml文件
      • 写配置类
    • 3.创建doc的实体类
    • 4.写实体类对应的mapper
    • 5.存取数据的测试
  • Kibana进行查询
    • 1.全查询
    • 2.进行模糊查询
    • 附录:Kibana报错解决
  • 总结

引出


1.Elasticsearch的springboot整合;
2.Kibana进行全查询和模糊查询;

springBoot整合elasticsearch

在这里插入图片描述

1.引入依赖

        <!--        elasticsearch的依赖 --><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-elasticsearch</artifactId></dependency>

2.配置yml文件

在这里插入图片描述

server:port: 9090spring:application:# 给这个项目起个名称name: book-malldatasource:druid:url: jdbc:mysql://127.0.0.1:3306/book_db?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=trueusername: rootpassword: 123driver-class-name: com.mysql.cj.jdbc.Driver# es的相关配置data:elasticsearch:repositories:enabled: true# es的ip+端口elasticsearch:uris: 124.70.138.34:9200mybatis-plus:configuration:log-impl: org.apache.ibatis.logging.stdout.StdOutImpl# 单元测试配置
knife4j:enable: true# 日志级别配置
logging:level:com.tinaju.bm: debug

写配置类

在这里插入图片描述

package com.tinaju.bm.config;import org.elasticsearch.client.RestHighLevelClient;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.elasticsearch.client.ClientConfiguration;
import org.springframework.data.elasticsearch.client.RestClients;
import org.springframework.data.elasticsearch.config.AbstractElasticsearchConfiguration;/*** Elasticsearch的配置类*/
@Configuration
public class ElasticsearchConfig extends AbstractElasticsearchConfiguration {@Value("${spring.elasticsearch.uris}")private String uris;@Bean@Overridepublic RestHighLevelClient elasticsearchClient() {ClientConfiguration configuration =ClientConfiguration.builder().connectedTo(uris).build();return RestClients.create(configuration).rest();}
}

3.创建doc的实体类

在这里插入图片描述

package com.tinaju.bm.entity.es;import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.data.annotation.Id;
import org.springframework.data.elasticsearch.annotations.DateFormat;
import org.springframework.data.elasticsearch.annotations.Document;
import org.springframework.data.elasticsearch.annotations.Field;
import org.springframework.data.elasticsearch.annotations.FieldType;import java.math.BigDecimal;
import java.util.Date;/*** 和es相关的映射类doc文档*/
@Data
@NoArgsConstructor
@AllArgsConstructor@Document(indexName = "book_index",createIndex = true)
public class BookDoc {@Id@Field(type = FieldType.Text)private String id;@Field(type = FieldType.Text)private String title;@Field(type = FieldType.Text)private String author;@Field(type = FieldType.Text)private String isbn;@Field(type = FieldType.Double) // 是double类型private BigDecimal price;@Field(type = FieldType.Integer)private Integer version;@Field(type = FieldType.Date,format = DateFormat.basic_date_time)private Date pubDate; // 出版日期@Field(type = FieldType.Integer)private Integer store; // 库存@Field(type = FieldType.Text)private String imgUrl; // 封面图片地址@Field(type = FieldType.Double) // 是double类型private BigDecimal weight; // 重量@Field(type = FieldType.Integer)private Integer sold; // 卖出数量;@Field(type = FieldType.Text)private String introduction; // 简介@Field(type = FieldType.Integer)private Integer pages; // 图书页数@Field(type = FieldType.Date,format = DateFormat.basic_date_time)private Date createTime;@Field(type = FieldType.Date,format = DateFormat.basic_date_time)private Date updateTime;@Field(type = FieldType.Text)private String createBy; // 数据记录人@Field(type = FieldType.Text)private Long publisherName; // 出版社@Field(type = FieldType.Text)private Long typeName; // 类型}

4.写实体类对应的mapper

在这里插入图片描述

package com.tinaju.bm.dao.es;import com.tinaju.bm.entity.es.BookDoc;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;/*** es的dao,实体类类型,和主键的类型*/
@Mapper
public interface IBookDocDao extends ElasticsearchRepository<BookDoc,String> {
}

5.存取数据的测试

在这里插入图片描述

    @Autowiredprivate IBookDocDao bookDocDao;@Overridepublic void addToES() {List<Book> books = bookMapper.selectList(null);books.forEach(book -> {BookDoc bookDoc = new BookDoc();bookDoc.setId(book.getId()+"");bookDoc.setAuthor(book.getAuthor());bookDoc.setIntroduction(book.getIntroduction());bookDoc.setTitle(book.getTitle());bookDoc.setPrice(book.getPrice());bookDocDao.save(bookDoc);});}

在这里插入图片描述

进行es的查询

在这里插入图片描述

    @Autowiredprivate IBookDocDao bookDocDao;@Testpublic void findES() {Iterable<BookDoc> all = bookDocDao.findAll();System.out.println(all);all.forEach(bookDoc -> {System.out.println(bookDoc);});System.out.println("###############");Optional<BookDoc> byId = bookDocDao.findById("4");System.out.println(byId.get());}

Kibana进行查询

1.全查询

GET /book_index/_search

全查询,耗时比Navicat多,可能是我的数据量较少,并且es是在服务器上,网络可能也有延迟;

而我的mysql是本地的数据库;

在这里插入图片描述

Navicat进行查询

在这里插入图片描述

2.进行模糊查询

MySQL进行模糊查询

在这里插入图片描述

es进行模糊查询

在这里插入图片描述

GET /book_index/_search
{"query": {"bool": {"should": [{"fuzzy": {"title": {"value": "中"}}},{"wildcard": {"author": {"value": "中"}}},{"wildcard": {"introduction": {"value": "中"}}}]}}
}

附录:Kibana报错解决

打开kibana网页后报错

在这里插入图片描述

在配置文件里面设置server.name解决问题

在这里插入图片描述


总结

1.Elasticsearch的springboot整合;
2.Kibana进行全查询和模糊查询;

http://www.tj-hxxt.cn/news/128936.html

相关文章:

  • 如何使用阿里云建站关键词优化报价查询
  • 建设网站的颜色博客是哪个软件
  • 外卖app开发需要多少钱东莞网站seo优化
  • 网站建设分享文章seo的搜索排名影响因素有
  • 4.请简述网站建设流程的过程如何制作一个网页链接
  • php网站挂到linux服务器上应该这么做百度网盘在线登录
  • 网站中下滑菜单怎么做如何开展网络营销活动
  • 免费源码分享网站旅游企业seo官网分析报告
  • 哪有做网站链接推广
  • delphi WordPress上海百度搜索排名优化
  • 使用php的大型网站杭州优化商务服务公司
  • 上海商城网站建设长春seo主管
  • 计算机软件开发工资高吗重庆seo排名技术
  • 创新创业教育课程网站建设方案产品推广怎么做
  • 网站筛选功能企业查询宝
  • 十五种网络营销工具甲马营seo网站优化的
  • 网页制作与设计中string对象ppt南昌搜索引擎优化
  • 门户网站和社交网络的区别百度网盘下载慢怎么解决
  • 网站如何做301转向上海关键词优化按天计费
  • 国内知名域名注册网站七牛云
  • 网站制作文章黑科技引流推广神器
  • 高性能网站建设 pdfapp推广联盟
  • 傻瓜网站建设软件广告推广公司
  • 呼和浩特网站建设百度seo运营工作内容
  • 个人创建网站程序企业邮箱网页版
  • 化工销售怎么做网站建立企业网站步骤
  • 购物网站建设论文2345网址导航怎么下载
  • 星巴克网站开发票吗2023第二波疫情已经到来了
  • 网站运营费用成免费的crm
  • 北京seo排名技术win10优化大师有用吗