随笔分类 - 工具使用
摘要:ElasticSearch基础学习 1. Elasticsearch 的基本概念 Index(索引):相当于数据库中的表,存储一类文档。 Document(文档):索引中的一条记录,使用 JSON 格式表示。 Type(类型):文档的分类,Elasticsearch 7.x 之后已不再推荐使用。 F
阅读全文
摘要:Springboot整合ElasticSearch 导入依赖 <dependency> <groupId>org.elasticsearch</groupId> <artifactId>elasticsearch</artifactId> <version>${elasticsearch.versi
阅读全文
摘要:依赖 <!-- mybatis依赖 --> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.3.2</ver
阅读全文
摘要:Mybatis-generator 使用 一. 添加依赖 <!-- 首先要有mybatis的依赖 和数据库驱动 --> <dependencies> <!-- mybatis依赖 --> <dependency> <groupId>org.mybatis.spring.boot</groupId>
阅读全文