Interface JaversCommitPropertyRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<JvCommitPropertyEntity,JvCommitPropertyId>, org.springframework.data.jpa.repository.JpaRepository<JvCommitPropertyEntity,JvCommitPropertyId>, org.springframework.data.repository.PagingAndSortingRepository<JvCommitPropertyEntity,JvCommitPropertyId>, org.springframework.data.repository.query.QueryByExampleExecutor<JvCommitPropertyEntity>, org.springframework.data.repository.Repository<JvCommitPropertyEntity,JvCommitPropertyId>

@Repository public interface JaversCommitPropertyRepository extends org.springframework.data.jpa.repository.JpaRepository<JvCommitPropertyEntity,JvCommitPropertyId>
  • Method Summary

    Modifier and Type
    Method
    Description
    void
     
    void
     

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

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save

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

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

    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

    • deleteByIdCommitId

      @Modifying @Query("DELETE FROM JvCommitPropertyEntity e WHERE e.id.commitId = :commitId") void deleteByIdCommitId(@Param("commitId") Long commitId)
    • deleteByIdCommitIdIn

      @Modifying @Query("DELETE FROM JvCommitPropertyEntity e WHERE e.id.commitId IN (:commitIds)") void deleteByIdCommitIdIn(@Param("commitIds") Collection<Long> commitIds)