注意:构建这个项目需要降低springboot版本为:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.0.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
然后清理IDEA缓存,重启IDEA!
您好!你解决了没有,我现在也遇到相同的问题:这段代码:
Page<EsBlog> search = (Page<EsBlog>) esBlogRepository.search(builder); List<EsBlog> content = search.getContent();
也是报错:
没问题了,这个和mysql不一样,刚才我试着去新增一条数据,然后可以直接保存,不会因为没有对应字段而导致插入失败。而且在保存过后,相应的映射在kibana中也可以看见
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.1.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent>
这个我折腾了个通宵,可算折腾出来了。
用spring 2.3.0版本可以导 spring-boot-starter-data-elasticsearch这个包,2.3.1的阿里云镜像则不行。配置中也不是spring.data.elasticsearch.cluster-url了,是spring.elasticsearch.rest.uris
那是es里面查询到的blog吧
包含2的重复二次,分开来
错误原因:当前最新版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 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>
那就用String
参考文章:
https://kb.kutu66.com/elasticsearch/post_6017405
https://blog.csdn.net/hyyyya/article/details/105186254。这是我自己根据视频做的笔记和代码。要是有需要可以观看一下。
// 用 postman 查找出来的 type 是 _doc, 我把注解也修改为 _doc 就可以查到数据了 @Document(indexName = "blog", type = "_doc", useServerConfiguration = true, createIndex = false)
+1~