spring-boot-starter-data-elasticsearch依赖
时间: 2023-10-09 11:10:01 浏览: 136
spring-data-elasticsearch
spring-boot-starter-data-elasticsearch是用于在Spring Boot项目中集成Elasticsearch的依赖。在pom.xml文件中添加以下依赖项即可引入它:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-elasticsearch</artifactId>
</dependency>
```
阅读全文