Interface UserRepository

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

@Repository @Transactional(readOnly=true) public interface UserRepository extends org.springframework.data.jpa.repository.JpaRepository<AppUser,Long>
Repository interface for AppUser entities.

It extends JpaRepository to provide standard database operations and defines custom methods for specific user lookup and update operations.

This repository is set to be read-only by default for performance and safety.