ElasticSearch 不支持的主键数据类型

前言

     前段时间遇到ES 中数据类型的一个坑,ElasticsearchRepository中的ID不支持BigInteger 类型, 说一下入坑的过程。

正文

使用BigInteger 报错

1、定义Entity

@Data
@Builder
@Document(indexName = "paper", type = "index", shards = 5, replicas = 1, refreshInterval = "-1")
public class PaperIndex {
    @Id
    private BigInteger id;

    /**
     * 标题
     */
    @Field(type = FieldType.Text, analyzer = "ik_max_word")
    private String title;

    /**
     * 摘要
     */
    @Field(type = FieldType.Text, analyzer = "ik_max_word")
    private String summary;

2、 定义Repository

@Component
public interface PaperIndexRepository extends ElasticsearchRepository {
}

3、启动程序的错误日志

# 参数异常:不支持BigInteger 类型
Invocation of init method failed; nested exception is java.lang.IllegalArgumentException: Unsupported ID type class java.math.BigInteger

查看源码

实现类:
ElasticSearch 不支持的主键数据类型_第1张图片
AbstractElasticsearchRepository中关于ID 有一个抽象方法:
ElasticSearch 不支持的主键数据类型_第2张图片
关于stringIdRepresentation() 的实现有三个:在这里插入图片描述
NumberKeyedRepository:
ElasticSearch 不支持的主键数据类型_第3张图片
SimpleElasticsearchRepository:
ElasticSearch 不支持的主键数据类型_第4张图片
UUIDElasticsearchRepository:
ElasticSearch 不支持的主键数据类型_第5张图片
按照我的理解,id的类型可以是:String,UUID,Number (int,long,float,double,byte,short及其包装类型); 所以BigInteger 就不合适咯~

试了下BigDecimal类型,也是不支持滴~!
在这里插入图片描述

总结

     对ES 的使用不熟悉,导致一个坑接着一个坑的,后续博客将会持续介绍ES 的学习和使用,欢迎大家前来交流~

你可能感兴趣的:(【Java】,【基础知识】,【Java,基础】)