慕九州0538710
2020-06-04 12:02
Elasticsearch exception [type=json_parse_exception, reason=Current token (VALUE_NUMBER_INT) not of boolean type
错误原因:当前最新版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>
Springboot + ElasticSearch 构建博客检索系统
22917 学习 · 112 问题
相似问题