繁体   English   中英

在Elasticsearch中禁用文档中所有字段的索引字段

[英]Disable indexing fields for all fields in the document in Elasticsearch

  • 在我的Java Spring应用程序中使用elasticsearch,用于与Elasticsearch配合使用Spring JPA。 我在Java中有一个文档和相应的类,其中的所有字段都不应编入索引(我使用java api中的termFilter语句搜索它们以查找完全匹配)在我的情况下,我必须注释每个字段

    @Field(类型= FieldType.String,索引= FieldIndex.not_analyzed)

我得到这样的东西

@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
@Document(indexName = "message", type = "message")
public class Message implements Serializable {

    @Id
    @NotNull
    @JsonProperty("id")
    private String id;

    @JsonProperty("userName")
    @Field(type = FieldType.String, index = FieldIndex.not_analyzed)
    private String userName;


    @NotNull
    @JsonProperty("topic")
    @Field(index = FieldIndex.not_analyzed, type = FieldType.String)
    private String topic;

    @NotNull
    @JsonProperty("address")
    @Field(index = FieldIndex.not_analyzed, type = FieldType.String)
    private String address;

    @NotNull
    @JsonProperty("recipient")
    @Field(index = FieldIndex.not_analyzed, type = FieldType.String)
    private String recipient;


}

是否可以在类上添加注释,以免在所有字段上方重复注释?

您可以使用原始映射+ 动态模板在没有@Field批注的情况下实现目标
使用@Mapping注解在json文件中指定映射的路径

@Mapping(mappingPath = "/mappings.json")

然后在mappings.json定义您的映射,如下所示:

{
  "mappings": {
    "message": {
        "dynamic_templates": [
            { "notanalyzed": {
                  "match":              "*", 
                  "match_mapping_type": "string",
                  "mapping": {
                      "type":        "string",
                      "index":       "not_analyzed"
                  }
               }
            }
          ]
       }
   }
}

注意:我没有测试它,所以请检查错别字。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM