Interface TurConfigVarRepository
- All Superinterfaces:
CrudRepository<TurConfigVar,,String> JpaRepository<TurConfigVar,,String> ListCrudRepository<TurConfigVar,,String> ListPagingAndSortingRepository<TurConfigVar,,String> PagingAndSortingRepository<TurConfigVar,,String> QueryByExampleExecutor<TurConfigVar>,Repository<TurConfigVar,String>
-
Method Summary
Modifier and TypeMethodDescriptionvoiddelete(@NotNull TurConfigVar turConfigVar) @NotNull List<TurConfigVar> findAll()@NotNull Optional<TurConfigVar> @NotNull TurConfigVarsave(@NotNull TurConfigVar turConfigVar) Methods inherited from interface CrudRepository
count, deleteAll, deleteAll, deleteAllById, deleteById, existsByIdMethods inherited from interface JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlushMethods inherited from interface ListCrudRepository
findAllById, saveAllMethods inherited from interface ListPagingAndSortingRepository
findAllMethods inherited from interface PagingAndSortingRepository
findAllMethods inherited from interface QueryByExampleExecutor
count, exists, findAll, findBy, findOne
-
Method Details
-
findAll
- Specified by:
findAllin interfaceCrudRepository<TurConfigVar,String> - Specified by:
findAllin interfaceListCrudRepository<TurConfigVar,String>
-
findById
@Cacheable("turConfigVarfindById") @NotNull @NotNull Optional<TurConfigVar> findById(@NotNull @NotNull String id) - Specified by:
findByIdin interfaceCrudRepository<TurConfigVar,String>
-
save
@CacheEvict(value={"turConfigVarfindAll","turConfigVarfindById"}, allEntries=true) @NotNull @NotNull TurConfigVar save(@NotNull @NotNull TurConfigVar turConfigVar) - Specified by:
savein interfaceCrudRepository<TurConfigVar,String>
-
delete
@CacheEvict(value={"turConfigVarfindAll","turConfigVarfindById"}, allEntries=true) void delete(@NotNull @NotNull TurConfigVar turConfigVar) - Specified by:
deletein interfaceCrudRepository<TurConfigVar,String>
-