Package org.springframework.data.elasticsearch.repository.support

Examples of org.springframework.data.elasticsearch.repository.support.ElasticsearchRepositoryFactory


  @Override
  protected T create(CreationalContext<T> creationalContext, Class<T> repositoryType, Object customImplementation) {
    ElasticsearchOperations elasticsearchOperations = getDependencyInstance(elasticsearchOperationsBean,
        ElasticsearchOperations.class);
    return new ElasticsearchRepositoryFactory(elasticsearchOperations).getRepository(repositoryType,
        customImplementation);
  }
View Full Code Here


  }

  @Override
  protected T create(CreationalContext<T> creationalContext, Class<T> repositoryType) {
        ElasticsearchOperations elasticsearchOperations = getDependencyInstance(elasticsearchOperationsBean, ElasticsearchOperations.class);
    return new ElasticsearchRepositoryFactory(elasticsearchOperations).getRepository(repositoryType);
  }
View Full Code Here

TOP

Related Classes of org.springframework.data.elasticsearch.repository.support.ElasticsearchRepositoryFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.