接口 AppDao

所有超级接口:
org.springframework.data.repository.CrudRepository<App,Long>, io.geewit.data.jpa.essential.repository.EntityGraphCrudRepository<App,Long>, io.geewit.data.jpa.essential.repository.EntityGraphJpaRepository<App,Long>, io.geewit.data.jpa.essential.repository.EntityGraphJpaSpecificationExecutor<App>, io.geewit.data.jpa.essential.repository.EntityGraphPagingAndSortingRepository<App,Long>, org.springframework.data.jpa.repository.JpaRepository<App,Long>, org.springframework.data.jpa.repository.JpaSpecificationExecutor<App>, org.springframework.data.repository.PagingAndSortingRepository<App,Long>, org.springframework.data.repository.query.QueryByExampleExecutor<App>, org.springframework.data.repository.Repository<App,Long>

public interface AppDao extends io.geewit.data.jpa.essential.repository.EntityGraphJpaRepository<App,Long>, io.geewit.data.jpa.essential.repository.EntityGraphJpaSpecificationExecutor<App>
  • 方法概要

    修饰符和类型
    方法
    说明
    void
     

    从接口继承的方法 org.springframework.data.repository.CrudRepository

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

    从接口继承的方法 io.geewit.data.jpa.essential.repository.EntityGraphCrudRepository

    findAll, findAllById, findById

    从接口继承的方法 io.geewit.data.jpa.essential.repository.EntityGraphJpaSpecificationExecutor

    findAll, findAll, findAll, findOne

    从接口继承的方法 io.geewit.data.jpa.essential.repository.EntityGraphPagingAndSortingRepository

    findAll, findAll

    从接口继承的方法 org.springframework.data.jpa.repository.JpaRepository

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

    从接口继承的方法 org.springframework.data.jpa.repository.JpaSpecificationExecutor

    count, findAll, findAll, findAll, findOne

    从接口继承的方法 org.springframework.data.repository.PagingAndSortingRepository

    findAll

    从接口继承的方法 org.springframework.data.repository.query.QueryByExampleExecutor

    count, exists, findAll, findOne
  • 方法详细资料

    • deleteById

      @Transactional(rollbackFor=java.lang.Exception.class) @Modifying(flushAutomatically=true, clearAutomatically=true) @Query("delete from App a where a.appId = :appId") void deleteById(@Param("appId") Long id)
      指定者:
      deleteById 在接口中 org.springframework.data.repository.CrudRepository<App,Long>