Interface StudentRepository
- All Superinterfaces:
CrudRepository<Student,,Long> GenericRepository<Student,,Long> JpaSpecificationExecutor<Student>
public interface StudentRepository
extends CrudRepository<Student,Long>, JpaSpecificationExecutor<Student>
-
Method Summary
Modifier and TypeMethodDescriptionstatic QuerySpecification<Student> byBookTitles(List<String> bookTitles) voiddeleteByIdAndVersion(Long id, Long version) voiddeleteByIdAndVersionAndName(Long id, Long version, String name) findByName(String name) queryByName(String name, Pageable pageable) voidupdateById(Long id, String name) voidupdateByIdAndVersion(Long id, Long version, String name) Methods inherited from interface io.micronaut.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteById, existsById, findAll, findById, save, saveAll, update, updateAll
-
Method Details
-
updateByIdAndVersion
-
updateById
-
deleteByIdAndVersionAndName
-
deleteByIdAndVersion
-
findByName
-
queryByName
-
byBookTitles
-