ElasticSearch入门教程【六】- spring-boot-starter-data-elasticsearch

教程列表

ElasticSearch入门教程【一】- 简介
ElasticSearch入门教程【二】- 安装
ElasticSearch入门教程【三】- Head插件
ElasticSearch入门教程【四】- 基本用法
ElasticSearch入门教程【五】- TransportClient客户端
ElasticSearch入门教程【六】- spring-boot-starter-data-elasticsearch

一、版本信息

Springboot 2.0.9.RELEASE

spring-boot-starter-data-elasticsearch 2.0.9.RELEASE

Elasticsearch 5.6.16

二、Maven依赖
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-parent</artifactId>
		<version>2.0.9.RELEASE</version> <!-- 该版本兼容Elasticsearch 5.6.16 -->
		<relativePath/> <!-- lookup parent from repository -->
	</parent>
	<groupId>com.rkyao</groupId>
	<artifactId>spring-boot-elasticsearch-repositories</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<name>spring-boot-elasticsearch-repositories</name>
	<description>Demo project for Spring Boot</description>

	<properties>
		<java.version>1.8</java.version>
	</properties>

	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
			<exclusions>
				<exclusion>
					<groupId>org.junit.vintage</groupId>
					<artifactId>junit-vintage-engine</artifactId>
				</exclusion>
			</exclusions>
		</dependency>

		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.12</version>
		</dependency>

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

		<!-- Lombok -->
		<dependency>
			<groupId>org.projectlombok</groupId>
			<artifactId>lombok</artifactId>
			<version>1.18.12</version>
			<scope>provided</scope>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
			</plugin>
		</plugins>
	</build>

</project>

三、application.properties配置文件
# elasticsearch配置
# 集群地址
spring.data.elasticsearch.cluster-nodes=192.168.255.150:9300
# 集群名称
spring.data.elasticsearch.cluster-name=rkyao-es-cluster
# 开启 Elasticsearch 仓库
spring.data.elasticsearch.repositories.enabled=true
四、代码实现
1. 实体类
package com.rkyao.spring.boot.elasticsearch.repositories.entity;

import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.data.annotation.Id;
import org.springframework.data.elasticsearch.annotations.DateFormat;
import org.springframework.data.elasticsearch.annotations.Document;
import org.springframework.data.elasticsearch.annotations.Field;
import org.springframework.data.elasticsearch.annotations.FieldType;

import java.io.Serializable;
import java.util.Date;

@Data
@NoArgsConstructor
@AllArgsConstructor
@Document(indexName = "people", type="student")
public class Student implements Serializable {

    /**
     * id字段必须有
     */
    @Id
    private String id;

    /**
     * 姓名
     */
    private String name;

    /**
     * 地址
     */
    private String address;

    /**
     * 年龄
     */
    private int age;

    /**
     * 出生日期
     */
    @Field(type = FieldType.Date, format = DateFormat.custom, pattern = "yyyy-MM-dd HH:mm:ss||epoch_millis")
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern ="yyyy-MM-dd HH:mm:ss", timezone="GMT+8")
    private Date birthday;

}
2. Repository接口
package com.rkyao.spring.boot.elasticsearch.repositories.repository;

import com.rkyao.spring.boot.elasticsearch.repositories.entity.Student;
import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;

import java.util.List;

public interface StudentRepository extends ElasticsearchRepository<Student, String> {

    List<Student> findByNameAndAge(String name, int age);

}
3. 增删改查操作
package com.rkyao.spring.boot.elasticsearch.repositories.repository;

import com.rkyao.spring.boot.elasticsearch.repositories.entity.Student;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

import java.util.Date;
import java.util.List;
import java.util.Optional;

@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest
public class StudentRepositoryTest {

    @Autowired
    private StudentRepository studentRepository;

    /**
     * 新增数据
     *
     * @throws Exception
     */
    @Test
    public void testSave() throws Exception {
        Student student = new Student();
        // id不指定会自动生成
        student.setId("1");
        student.setName("Big Q");
        student.setAddress("SD");
        student.setAge(26);
        student.setBirthday(new Date());
        Student student1 = studentRepository.save(student);
        System.out.println(student1);
    }

    /**
     * 更新数据
     *
     * @throws Exception
     */
    @Test
    public void testUpdate() throws Exception {
        Student student = new Student();
        // 根据id更新
        student.setId("1");
        student.setName("Big Q");
        student.setAddress("HZ");
        student.setAge(25);
        student.setBirthday(new Date());
        studentRepository.save(student);
        Student student1 = studentRepository.save(student);
        System.out.println(student1);
    }

    /**
     * 删除数据
     *
     * @throws Exception
     */
    @Test
    public void testDelete() throws Exception {
        String id = "1";
        studentRepository.deleteById(id);
    }

    /**
     * 查询全部数据
     *
     * @throws Exception
     */
    @Test
    public void testFindAll() throws Exception {
        Iterable<Student> list = studentRepository.findAll();
        for (Student student : list) {
            System.out.println(student);
        }
    }

    /**
     * 根据id查询
     *
     * @throws Exception
     */
    @Test
    public void testFindById() throws Exception {
        String id = "1";
        Optional<Student> student = studentRepository.findById(id);
        student.ifPresent(System.out::println);
    }

    /**
     * 自定义查询 根据姓名和年龄查询
     *
     * @throws Exception
     */
    @Test
    public void testFindByNameAndAge() throws Exception {
        String name = "Big Q";
        int age = 26;
        List<Student> studentList = studentRepository.findByNameAndAge(name, age);
        System.out.println(studentList);
    }

}
五、工程目录结构

在这里插入图片描述

六、Springboot和Elasticsearch的版本对照关系

在这里插入图片描述

七、参考文档

https://docs.spring.io/spring-data/elasticsearch/docs/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值