Interface EntityGraphCrudRepository<T,ID>
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<T,,ID> EntityGraphRepository<T,,ID> org.springframework.data.repository.Repository<T,ID>
- All Known Subinterfaces:
EntityGraphJpaRepository<T,,ID> EntityGraphPagingAndSortingRepository<T,ID>
- All Known Implementing Classes:
EntityGraphQuerydslRepository,EntityGraphSimpleJpaRepository
@NoRepositoryBean
public interface EntityGraphCrudRepository<T,ID>
extends org.springframework.data.repository.CrudRepository<T,ID>, EntityGraphRepository<T,ID>
Created on 18/03/17.
- Author:
- Reda.Housni-Alaoui
-
Method Summary
Modifier and TypeMethodDescriptionfindAll(EntityGraph entityGraph) findAllById(Iterable<ID> ids, EntityGraph entityGraph) findById(ID id, EntityGraph entityGraph) Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAll, findAllById, findById, save, saveAllMethods inherited from interface com.cosium.spring.data.jpa.entity.graph.repository.EntityGraphRepository
defaultEntityGraph
-
Method Details
-
findById
- See Also:
-
CrudRepository.findById(Object)
-
findAllById
- See Also:
-
CrudRepository.findAllById(Iterable)
-
findAll
- See Also:
-
CrudRepository.findAll()
-