Example usage for org.springframework.data.mongodb.repository.support MongoRepositoryFactory MongoRepositoryFactory

List of usage examples for org.springframework.data.mongodb.repository.support MongoRepositoryFactory MongoRepositoryFactory

Introduction

In this page you can find the example usage for org.springframework.data.mongodb.repository.support MongoRepositoryFactory MongoRepositoryFactory.

Prototype

public MongoRepositoryFactory(MongoOperations mongoOperations) 

Source Link

Document

Creates a new MongoRepositoryFactory with the given MongoOperations .

Usage

From source file:se.inera.axel.riv.impl.MongoDBTestContextConfig.java

public @Bean MongoRepositoryFactory mongoRepositoryFactory() throws Exception {
    return new MongoRepositoryFactory(mongoOperations());
}