spring-data-elasticsearch- все статьи тега


Аннотация @Field Spring Data Elasticsearch не работает

У меня есть приложение Spring Boot с плагином Spring Data Elasticsearch в pom.XML. Я создал класс документов, который я хотел бы проиндексировать: @Document(indexName = "operations", type = "operation") public class OperationDocument { @Id private Long id; @Field( type = FieldType.String, index = FieldIndex.analyzed, searchAnalyzer = "standard", indexAnalyzer = "standard", store = true ) private String operationName; @Field( type = FieldType.Date, index = Fie ...