Example usage for org.springframework.data.rest.webmvc.support JpaHelper JpaHelper

List of usage examples for org.springframework.data.rest.webmvc.support JpaHelper JpaHelper

Introduction

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

Prototype

JpaHelper

Source Link

Usage

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

@Bean
public JpaHelper jpaHelper() {
    if (IS_JPA_AVAILABLE) {
        return new JpaHelper();
    } else {/*from w  ww .j av a2s  . co m*/
        return null;
    }
}