Example usage for org.springframework.data.rest.core.support UnwrappingRepositoryInvokerFactory UnwrappingRepositoryInvokerFactory

List of usage examples for org.springframework.data.rest.core.support UnwrappingRepositoryInvokerFactory UnwrappingRepositoryInvokerFactory

Introduction

In this page you can find the example usage for org.springframework.data.rest.core.support UnwrappingRepositoryInvokerFactory UnwrappingRepositoryInvokerFactory.

Prototype

public UnwrappingRepositoryInvokerFactory(RepositoryInvokerFactory delegate,
        List<? extends EntityLookup<?>> lookups) 

Source Link

Usage

From source file:org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration.java

@Bean
public RepositoryInvokerFactory repositoryInvokerFactory(
        @Qualifier ConversionService defaultConversionService) {

    return new UnwrappingRepositoryInvokerFactory(
            new DefaultRepositoryInvokerFactory(repositories(), defaultConversionService), getEntityLookups());
}