spring-data-elasticsearch @Field注解无效怎么办
这篇文章主要介绍了spring-data-elasticsearch @Field注解无效怎么办,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
一. 准备实例代码
这是实体类代码,及其注解
package com.gupao.springbootdemo.bean; import lombok.Data;import org.springframework.data.annotation.Id;import org.springframework.data.elasticsearch.annotations.Document;import org.springframework.data.elasticsearch.annotations.Field;import org.springframework.data.elasticsearch.annotations.FieldType; import java.util.List; @Data@Document(indexName = "es_user")public class ESUser { @Id private Long id; @Field(type = FieldType.Text) private String name; @Field(type = FieldType.Integer) private Integer age; @Field(type = FieldType.Keyword) private List<String> tags; @Field(type = FieldType.Text, analyzer = "ik_max_word") private String desc; }
这是创建索引的代码
boolean index = elasticsearchRestTemplate.createIndex(ESUser.class);
我们会发现,当执行后, 虽然执行成功, 但是我们去查看索引信息的时候发现没有mapping信息
二. 解决方案
1.在createIndex方法后加putMapping方法
boolean index = elasticsearchRestTemplate.createIndex(ESUser.class);elasticsearchRestTemplate.putMapping(ESUser.class);
问题解决,查看mapping信息就有了
2.更新版本(注: 版本更新对应要更新es版本到7.8以上,不建议!!)
项目启动的时候,自动创建索引,无需手动调用API创建!!!
三. 解决思路(源码部分,以下只是笔者解决过程)
笔者通过查看elasticsearcRestTemplate的源码才发现
@Overridepublic ElasticsearchPersistentEntity getPersistentEntityFor(Class clazz) {Assert.isTrue(clazz.isAnnotationPresent(Document.class), "Unable to identify index name. " + clazz.getSimpleName()+ " is not a Document. Make sure the document class is annotated with @Document(indexName=\"foo\")");return elasticsearchConverter.getMappingContext().getRequiredPersistentEntity(clazz);}
创建索引前会通过getMappingContext方法获取mappingContext字段, 但是这个字段怎么赋值呢?
没有头绪!!!!!
笔者又转念一想, 我们直接思考下, 我们找到@Field字段在哪里被解析, 这不就知道读取@Field的类和设置mappingContext的方法了!!!!
妙 啊!!!!!!
原来是
MappingBuilder这个类对@Field进行解析, 后来进去发现@Mapping解析.json,也就是网上的方法解析方法也在里面, 哈哈殊途同归, 对外提供的方法为:
看注释, 我就知道离真相不远了,继续查看调用链, 真相大白!!!下面方法我就不多做解释了
感谢你能够认真阅读完这篇文章,希望小编分享的“spring-data-elasticsearch @Field注解无效怎么办”这篇文章对大家有帮助,同时也希望大家多多支持编程网,关注编程网行业资讯频道,更多相关知识等着你来学习!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341