springboot集成ElasticSearch7.7.1

pom.xml导入坐标

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

注意是这个版本

spring.yml配置

spring:  
 elasticsearch:
     rest:
       uris: http://127.0.0.1:9200

 导入模板就可以用了

@Autowired
private ElasticsearchRestTemplate esTemplate;
posted @ 2020-08-13 10:57  *乐途*  阅读(1320)  评论(0)    收藏  举报