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

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

Introduction

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

Prototype

public RepositoryRelProvider(ObjectFactory<ResourceMappings> mappings) 

Source Link

Document

Creates a new RepositoryRelProvider for the given ResourceMappings .

Usage

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

@Bean
public RepositoryRelProvider repositoryRelProvider(ObjectFactory<ResourceMappings> resourceMappings) {
    return new RepositoryRelProvider(resourceMappings);
}