Elasticsearch exception [type=json_parse_exception, reason=Current token (VALUE_NUMBER_INT) not of boolean type这是什么原因引起的、请教

来源:5-5 springboot 集成ES

慕九州0538710

2020-06-04 12:03

Elasticsearch exception [type=json_parse_exception, reason=Current token (VALUE_NUMBER_INT) not of boolean type这是什么原因引起的、请教

写回答 关注

13回答

  • 慕神4005405
    2023-01-28 16:17:00

    确保elastic search 和 springboot的版本匹配。  

    低版本的springboot, 需要在@document 中加属性 type="_doc"

  • 慕婉清秋
    2021-05-13 13:42:40

    <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-elasticsearch</artifactId> <version>2.2.0.RELEASE</version> </dependency> 这边改成2.2.0,亲测有效。

  • 林子懿
    2021-01-25 17:44:12

    需要版本保持一致,比如说springboot使用的是2.2.0.RELEASE,看一下对员工的elasticsearch对应的版本,比如是:6.8.3 那么你安装的elastic的版本必须和这个保持一致,或者你修改springboot的版本。确保两者一致 就没问题

  • 爱笑的小熊猫
    2020-11-24 05:29:18

    错误原因:当前最新版springboot 2.4.0 相匹配的spring-boot-starter-data-elasticsearch支持的是elasticsearch 7.x.x版本 然而本门课程使用的是6.3.2 

    解决方法:

    方法一:升级elasticsearch到7.x.x版本

    方法二:使用过去的springboot版本 我尝试了2.2.0.RELEASE 这个错误就不再出现了 推荐此方法因为比较容易修改只需更新pom.xml

    <parent>

         <groupId>org.springframework.boot</groupId>

         <artifactId>spring-boot-starter-parent</artifactId>

         <version>2.2.0.RELEASE</version>

         <relativePath/> <!-- lookup parent from repository -->

    </parent>


    慕婉清秋 回复慕婉清秋

    <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-elasticsearch</artifactId> <version>2.2.0.RELEASE</version> </dependency> 这边改成2.2.0,亲测有效。

    2021-05-13 13:42:14

    共 2 条回复 >

  • 独进青楼
    2020-09-08 22:32:35

    我也遇到了,完全没法解决

  • GalenZhang
    2020-08-08 22:24:04

    springboot版本问题,使用2.2.0可以正常运行

  • qq_Changemyself_0
    2020-07-20 16:32:56

    这个问题怎么解决呀  有人解决了了吗

  • 慕设计4411967
    2020-07-15 14:47:25

    这个问题应该是Spring boot版本问题 ,目前使用idea自动搭建的Spring项目中,Spring boot版本是2.3.1,这个版本的应该和视频中的版本不匹配  大家可以试试使用2.2.0版本就可以解决了

  • 一些事一些情
    2020-07-14 22:01:12

    老师在这一节,EsBlog实体类上的@Document注解的type属性,写的是doc,要写成_doc,再重新跑就可以了

  • 一些事一些情
    2020-07-14 20:16:26

    同求,有人解决了吗

  • 徐憨憨
    2020-07-07 16:29:24

    同求,这个问题要怎么解决

  • 稳重的男士
    2020-07-02 16:29:32

    解决了吗。我也碰到了

  • Judas2
    2020-06-08 09:58:02

    您好, 您解决这个问题了吗? 我出现同样的错误? 求指教

Springboot + ElasticSearch 构建博客检索系统

Springboot + ElasticSearch 构建个人博客检索系统

22917 学习 · 112 问题

查看课程

相似问题