Spring Data是一个用于简化数据库、非关系型数据库、索引库访问,并支持云服务的开源框架,其主要目标是使得对数据的访问变得方便快捷。
Spring Data的官网如下所示:
https://spring.io/projects/spring-data
Spring Data 常用的功能模块有:
- Spring Data JPA
- Spring Data MongoDB
- Spring Data Elasticsearch
- ......
Spring Data Elasticsearch基于Spring Data API简化 Elasticsearch 操作,将原始操作Elasticsearch 的客户端API进行封装。Spring Data为Elasticsearch 项目提供集成搜索引擎。Spring Data Elasticsearch POJO的关键功能区域为中心的模型与Elastichsearch交互文档和轻松地编写一个存储索引库数据访问层。
Spring Data Elasticsearch的官网:
https://spring.io/projects/spring-data-elasticsearch
第一步:构建一个Spring Boot的项目,其版本为2.7.6
- <parent>
- <groupId>org.springframework.bootgroupId>
- <artifactId>spring-boot-starter-parentartifactId>
- <version>2.7.6version>
- <relativePath/>
- parent>
第二步:在pom.xml中引入elasticsearch与Spring Data集成的依赖
-
org.springframework.boot -
spring-boot-starter-data-elasticsearch -
2.7.6
完整的pom.xml文件里面的内容为:
- "1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0modelVersion>
- <parent>
- <groupId>org.springframework.bootgroupId>
- <artifactId>spring-boot-starter-parentartifactId>
- <version>2.7.6version>
- <relativePath/>
- parent>
- <groupId>com.bcgroupId>
- &