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 TypeMethodDescriptionvoid
delete
(@NotNull TurConfigVar turConfigVar) @NotNull List
<TurConfigVar> findAll()
@NotNull Optional
<TurConfigVar> @NotNull TurConfigVar
save
(@NotNull TurConfigVar turConfigVar) Methods inherited from interface CrudRepository
count, deleteAll, deleteAll, deleteAllById, deleteById, existsById
Methods inherited from interface JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlush
Methods inherited from interface ListCrudRepository
findAllById, saveAll
Methods inherited from interface ListPagingAndSortingRepository
findAll
Methods inherited from interface PagingAndSortingRepository
findAll
Methods inherited from interface QueryByExampleExecutor
count, exists, findAll, findBy, findOne
-
Method Details
-
findAll
- Specified by:
findAll
in interfaceCrudRepository<TurConfigVar,
String> - Specified by:
findAll
in interfaceListCrudRepository<TurConfigVar,
String>
-
findById
@Cacheable("turConfigVarfindById") @NotNull @NotNull Optional<TurConfigVar> findById(@NotNull @NotNull String id) - Specified by:
findById
in interfaceCrudRepository<TurConfigVar,
String>
-
save
@CacheEvict(value={"turConfigVarfindAll","turConfigVarfindById"}, allEntries=true) @NotNull @NotNull TurConfigVar save(@NotNull @NotNull TurConfigVar turConfigVar) - Specified by:
save
in interfaceCrudRepository<TurConfigVar,
String>
-
delete
@CacheEvict(value={"turConfigVarfindAll","turConfigVarfindById"}, allEntries=true) void delete(@NotNull @NotNull TurConfigVar turConfigVar) - Specified by:
delete
in interfaceCrudRepository<TurConfigVar,
String>
-