Interface TurConfigVarRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<TurConfigVar,String>, org.springframework.data.jpa.repository.JpaRepository<TurConfigVar,String>, org.springframework.data.repository.ListCrudRepository<TurConfigVar,String>, org.springframework.data.repository.ListPagingAndSortingRepository<TurConfigVar,String>, org.springframework.data.repository.PagingAndSortingRepository<TurConfigVar,String>, org.springframework.data.repository.query.QueryByExampleExecutor<TurConfigVar>, org.springframework.data.repository.Repository<TurConfigVar,String>

public interface TurConfigVarRepository extends org.springframework.data.jpa.repository.JpaRepository<TurConfigVar,String>
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    delete(@NotNull TurConfigVar turConfigVar)
     
    @NotNull List<TurConfigVar>
     
    findById(@NotNull String id)
     
    @NotNull TurConfigVar
    save(@NotNull TurConfigVar turConfigVar)
     

    Methods inherited from interface org.springframework.data.repository.CrudRepository

    count, deleteAll, deleteAll, deleteAllById, deleteById, existsById

    Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository

    deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlush

    Methods inherited from interface org.springframework.data.repository.ListCrudRepository

    findAllById, saveAll

    Methods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor

    count, exists, findAll, findBy, findOne
  • Method Details

    • findAll

      @Cacheable("turConfigVarfindAll") @NotNull @NotNull List<TurConfigVar> findAll()
      Specified by:
      findAll in interface org.springframework.data.repository.CrudRepository<TurConfigVar,String>
      Specified by:
      findAll in interface org.springframework.data.repository.ListCrudRepository<TurConfigVar,String>
    • findById

      @Cacheable("turConfigVarfindById") @NotNull @NotNull Optional<TurConfigVar> findById(@NotNull @NotNull String id)
      Specified by:
      findById in interface org.springframework.data.repository.CrudRepository<TurConfigVar,String>
    • save

      @CacheEvict(value={"turConfigVarfindAll","turConfigVarfindById"}, allEntries=true) @NotNull @NotNull TurConfigVar save(@NotNull @NotNull TurConfigVar turConfigVar)
      Specified by:
      save in interface org.springframework.data.repository.CrudRepository<TurConfigVar,String>
    • delete

      @CacheEvict(value={"turConfigVarfindAll","turConfigVarfindById"}, allEntries=true) void delete(@NotNull @NotNull TurConfigVar turConfigVar)
      Specified by:
      delete in interface org.springframework.data.repository.CrudRepository<TurConfigVar,String>