Package cz.encircled.joiner.spring
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
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 springPageableand converts result to springPage-
Methods inherited from interface cz.encircled.joiner.core.JoinerRepository
find, findOne
-
-
-
-
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 springPageableand converts result to springPagePageableFeatureis used- Type Parameters:
R- return type- Parameters:
request- query request- Returns:
- find result converted to spring page
- See Also:
PageableFeature
-
-