Example usage for org.springframework.data.elasticsearch.core DefaultEntityMapper DefaultEntityMapper

List of usage examples for org.springframework.data.elasticsearch.core DefaultEntityMapper DefaultEntityMapper

Introduction

In this page you can find the example usage for org.springframework.data.elasticsearch.core DefaultEntityMapper DefaultEntityMapper.

Prototype

DefaultEntityMapper

Source Link

Usage

From source file:org.springframework.data.elasticsearch.core.DefaultResultMapper.java

public DefaultResultMapper() {
    super(new DefaultEntityMapper());
}

From source file:org.springframework.data.elasticsearch.core.DefaultResultMapper.java

public DefaultResultMapper(
        MappingContext<? extends ElasticsearchPersistentEntity<?>, ElasticsearchPersistentProperty> mappingContext) {
    super(new DefaultEntityMapper());
    this.mappingContext = mappingContext;
}