Interface SpringJoinerRepository<T>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      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
    • Method Detail

      • 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:
        PageableFeature