Package inha.git.user.domain.repository
Interface UserJpaRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<User,,Integer> org.springframework.data.jpa.repository.JpaRepository<User,,Integer> org.springframework.data.repository.ListCrudRepository<User,,Integer> org.springframework.data.repository.ListPagingAndSortingRepository<User,,Integer> org.springframework.data.repository.PagingAndSortingRepository<User,,Integer> org.springframework.data.repository.query.QueryByExampleExecutor<User>,org.springframework.data.repository.Repository<User,Integer>
public interface UserJpaRepository
extends org.springframework.data.jpa.repository.JpaRepository<User,Integer>
UserJpaRepository는 User 엔티티에 대한 데이터 액세스 기능을 제공.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanexistsByEmailAndState(String email, BaseEntity.State state) booleanexistsByUserNumberAndState(String userNumber, BaseEntity.State state) findAllByState(BaseEntity.State state) findByEmail(String mail) findByEmailAndState(String email, BaseEntity.State state) findByIdAndState(Integer id, BaseEntity.State state) findByUserNumberAndName(String userNumber, String name) Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, saveMethods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlushMethods inherited from interface org.springframework.data.repository.ListCrudRepository
findAll, findAllById, saveAllMethods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository
findAllMethods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAllMethods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findBy, findOne
-
Method Details
-
findByEmailAndState
-
existsByEmailAndState
-
existsByUserNumberAndState
-
findByIdAndState
-
findByEmail
-
findByUserNumberAndName
-
findAllByState
-