Example usage for org.springframework.data.querydsl.binding QuerydslBinderCustomizer interface-usage

List of usage examples for org.springframework.data.querydsl.binding QuerydslBinderCustomizer interface-usage

Introduction

In this page you can find the example usage for org.springframework.data.querydsl.binding QuerydslBinderCustomizer interface-usage.

Usage

From source file example.users.UserRepository.java

/**
 * Repository to manage {@link User}s. Also implements {@link QueryDslPredicateExecutor} to enable predicate filtering
 * on Spring MVC controllers as well as {@link QuerydslBinderCustomizer} to tweak the way predicates are created for
 * properties.
 * 
 * @author Christoph Strobl

From source file example.StoreRepository.java

/**
 * Repository interface for out-of-the-box paginating access to {@link Store}s and a query method to find stores by
 * location and distance.
 * 
 * @author Oliver Gierke
 * @author Thomas Darimont