使用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操作。

相关内容

热门资讯

透视规律!aapoker辅助器... 透视规律!aapoker辅助器是真的吗,aapoker插件,科技教程(有挂详情)1、许多玩家不知道a...
透视了解!aapoker透视方... 透视了解!aapoker透视方法,aapoker ai插件,技巧教程(有挂脚本)1、玩家可以在aap...
透视黑科技!aapoker怎么... 透视黑科技!aapoker怎么提高中牌率,aapoker辅助插件工具,专业教程(有挂方法);1、下载...
透视软件!aapoker怎么开... 透视软件!aapoker怎么开辅助器,aapoker透视怎么用,德州论坛(有挂黑科技)1、在aapo...
透视实锤!aapoker脚本怎... 透视实锤!aapoker脚本怎么用,aapoker ai插件,2025新版教程(有挂辅助);亲,关键...
透视辅助!aapoker真的假... 透视辅助!aapoker真的假的,aapoker透视脚本,存在挂教程(有挂介绍);1、玩家可以在aa...
透视辅助!aa poker辅助... 透视辅助!aa poker辅助,aapoker辅助工具安全吗,爆料教程(有挂技巧)1)aapoker...
透视能赢!aapoker透视脚... 透视能赢!aapoker透视脚本入口,aapoker辅助器是真的吗,普及教程(有挂脚本)aapoke...
透视肯定!aapoker怎么选... 透视肯定!aapoker怎么选牌,aapoker透视脚本下载,实用技巧(有挂教程)1、aapoker...
透视了解!aapoker安装包... 透视了解!aapoker安装包怎么使用,aapoker辅助怎么用,2025新版教程(有挂介绍)1、a...