SpringBoot 整合 Elasticsearch 实战——搜索、高亮、聚合
一、依赖与配置
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-elasticsearch</artifactId>
</dependency>spring:elasticsearch:uris: http://localhost:9200二、实体与 Repository
Doc…
2026/8/3 16:40:24