@NoRepositoryBean public interface CRUDRepository<T> extends PagingAndSortingRepository<T,Long>
| Modifier and Type | Method and Description |
|---|---|
Result<T> |
findAll()
uses the configured TypeRepresentationStrategy to load all entities, might return a large result
|
Result<T> |
findAll(Sort sort)
finder that takes the provided sorting into account
NOTE: the sorting is not yet implemented
|
Class |
getStoredJavaType(Object entity) |
Result<T> |
query(String query,
Map<String,Object> params) |
findAllResult<T> findAll()
findAll in interface CrudRepository<T,Long>Result<T> findAll(Sort sort)
findAll in interface PagingAndSortingRepository<T,Long>sort - Copyright © 2011-2014–2014 Pivotal Software, Inc.. All rights reserved.