Interface User_infoRepository

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

@Repository public interface User_infoRepository extends org.springframework.data.jpa.repository.JpaRepository<user_info,Long>
Repository for user_info Table
  • Method Summary

    Modifier and Type
    Method
    Description
    findAll(org.springframework.data.domain.Sort sort)
     
     
    findByPreferredname(String preferredname)
     

    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, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlush

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

    findAll, findAllById, saveAll

    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

    • findByPreferredname

      user_info findByPreferredname(String preferredname)
    • findByEmail

      user_info findByEmail(String email)
    • findAll

      List<user_info> findAll(@Nullable org.springframework.data.domain.Sort sort)
      Specified by:
      findAll in interface org.springframework.data.repository.ListPagingAndSortingRepository<user_info,Long>
      Specified by:
      findAll in interface org.springframework.data.repository.PagingAndSortingRepository<user_info,Long>