Spring Boot项目集成es

佚名 / 2023-08-24 / 原文

  1. 导入依赖
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
</dependency>
  1. application.yml加入如下配置
spring:
  elasticsearch:
    rest:
      uris: http://192.168.6.129:9200