Interface SpringJoinerRepository<T>

All Superinterfaces:
JoinerRepository<T>
All Known Implementing Classes:
SpringJoinerRepositoryImpl

public interface SpringJoinerRepository<T> extends JoinerRepository<T>
Entity repository with spring-data integration
Author:
Kisel on 31.10.2016.
  • Method Summary

    Modifier and Type
    Method
    Description
    <R, U extends T>
    org.springframework.data.domain.Page<R>
    findPage(JoinerQuery<U,R> request, org.springframework.data.domain.Pageable pageable)
    This "find" method support spring Pageable and converts result to spring Page

    Methods inherited from interface cz.encircled.joiner.core.JoinerRepository

    find, findOne
  • Method Details

    • findPage

      <R, U extends T> org.springframework.data.domain.Page<R> findPage(JoinerQuery<U,R> request, org.springframework.data.domain.Pageable pageable)
      This "find" method support spring Pageable and converts result to spring Page

      PageableFeature is used

      Type Parameters:
      R - return type
      Parameters:
      request - query request
      Returns:
      find result converted to spring page
      See Also: