欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

SpringBoot整合ElasticSearch(二)

程序员文章站 2024-03-05 16:44:01
...

1.依赖

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
        </dependency>

spring-boot-starter-data-elasticsearch

点进去发现依赖

<dependency>
   <groupId>org.springframework.data</groupId>
   <artifactId>spring-data-elasticsearch</artifactId>
</dependency>

spring-boot是使用springData elasticsearch模块来操作elasticsearch

2.自动注入

spring-boot默认支持两种技术交互elasticsearch:

1. SpringData 路径:org.springframework.boot.autoconfigure.data.elasticsearch

自动配置内容

Client :getClusterNodes 、getClusterName

org.springframework.boot.autoconfigure.data.elasticsearch.ElasticsearchDataAutoConfiguration

ElasticsearchTemplate操作 elasticsearch

2. jest路径:org.springframework.boot.autoconfigure.elasticsearch.jest (HTTP)
  • 默认不生效
  • HTTP

进入org.springframework.boot.autoconfigure.elasticsearch.jest.JestAutoConfiguration

看到@ConditionalOnClass(JestClient.class)

jest 默认不生效 需要导入包:import io.searchbox.client.JestClient;