使用SpringBoot集成Elasticsearch实现CRUD功能
创始人
2025-01-10 05:36:00
0

添加Elasticsearch依赖

首先,在pom.xml文件中添加Spring Boot和Elasticsearch的依赖:

      org.springframework.boot     spring-boot-starter-data-elasticsearch         org.elasticsearch.client     elasticsearch-rest-high-level-client     7.16.0   

配置Elasticsearch连接信息

application.propertiesapplication.yml文件中配置Elasticsearch连接信息:

使用application.properties配置:

# Elasticsearch properties spring.elasticsearch.rest.uris=http://localhost:9200

使用application.yml配置:

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

定义实体类

定义一个简单的实体类,作为索引中的文档:

import org.springframework.data.annotation.Id; import org.springframework.data.elasticsearch.annotations.Document;  @Document(indexName = "books", createIndex = true) public class Book {      @Id     private String id;      private String title;      private String author;      // 省略构造函数、getter和setter } 

创建Elasticsearch操作接口

创建一个接口来定义对Elasticsearch的操作:

import org.springframework.data.elasticsearch.annotations.Query; import org.springframework.data.elasticsearch.repository.ElasticsearchRepository; import java.util.List;  public interface BookRepository extends ElasticsearchRepository {      List findByTitle(String title);      @Query("{\"match\": {\"author\": \"?0\"}}")     List findByAuthorQuery(String author); } 

实现CRUD操作

在服务类或控制器中使用BookRepository进行CRUD操作:

import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*;  @RestController @RequestMapping("/books") public class BookController {      @Autowired     private BookRepository bookRepository;      @PostMapping     public Book addBook(@RequestBody Book book) {         return bookRepository.save(book);     }      @GetMapping("/{id}")     public Book getBook(@PathVariable String id) {         return bookRepository.findById(id).orElse(null);     }      @PutMapping("/{id}")     public Book updateBook(@PathVariable String id, @RequestBody Book book) {         book.setId(id); // 设置要更新的文档的ID         return bookRepository.save(book);     }      @DeleteMapping("/{id}")     public void deleteBook(@PathVariable String id) {         bookRepository.deleteById(id);     }      @GetMapping("/title/{title}")     public List findByTitle(@PathVariable String title) {         return bookRepository.findByTitle(title);     }      @GetMapping("/author/{author}")     public List findByAuthor(@PathVariable String author) {         return bookRepository.findByAuthorQuery(author);     } } 

示例说明

  • Book:使用@Document注解指定了索引名称和是否自动创建索引。
  • BookRepository接口:继承自ElasticsearchRepository,定义了一些基本的查询方法和自定义的查询方法。
  • BookController:使用BookRepository进行CRUD操作的示例控制器,包括添加、获取、更新和删除文档,以及根据标题和作者进行查询。

注意事项

  • 确保Elasticsearch服务器已经启动,并且配置信息(如端口、主机)正确匹配。
  • 在实际项目中,你可能需要根据具体的业务需求,定义更多的查询方法或者对查询结果进行处理。
  • 需要根据你的Elasticsearch版本来选择合适的elasticsearch-rest-high-level-client版本,并进行相应的依赖管理。

通过这些步骤,你可以在Spring Boot应用程序中轻松地集成Elasticsearch,并实现对其的CRUD操作。

相关内容

热门资讯

透视好友房!德州局脚本(透视)... 您好:德州局脚本这款游戏可以开挂的,确实是有挂的,很多玩家在这款游戏中打牌都会发现很多用户的牌特别好...
透明私人局!wejoker开挂... 透明私人局!wejoker开挂,新超凡手游辅助,介绍教程(有挂透明挂);无需打开直接搜索加薇1367...
一小时体悟!长乐互娱软件助手(... 您好:长乐互娱软件助手这款游戏可以开挂的,确实是有挂的,很多玩家在这款游戏中打牌都会发现很多用户的牌...
第一分钟模板!微信小程序雀神挂... 第一分钟模板!微信小程序雀神挂件怎么安装(透视)详细开挂辅助挂(有挂透明挂);无需打开直接搜索加薇1...
透视免费!wejoker开挂(... 您好:wejoker开挂这款游戏可以开挂的,确实是有挂的,很多玩家在这款游戏中打牌都会发现很多用户的...
查到实测辅助!微信微乐挂有没有... 您好:微信微乐挂有没有这款游戏可以开挂的,确实是有挂的,很多玩家在这款游戏中打牌都会发现很多用户的牌...
两刹那晓得!决战卡五星辅助(透... 两刹那晓得!决战卡五星辅助(透视)先前有开挂辅助下载(了解有挂);无需打开直接搜索加(薇:13670...
第一分钟妙计!微乐钻石兑换码(... 第一分钟妙计!微乐钻石兑换码(透视)详细开挂辅助工具(有挂头条);无需打开直接搜索加薇1367043...
透视辅助!pokemmo脚本辅... 您好:pokemmo脚本辅助下载这款游戏可以开挂的,确实是有挂的,很多玩家在这款游戏中打牌都会发现很...
教程辅助!hhpoker免费辅... 教程辅助!hhpoker免费辅助器,微乐智能辅助真的假的,黑科技教程(新版有挂)1、下载安装好微乐智...