Interface MemberRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<Member,Long>, org.springframework.data.repository.Repository<Member,Long>

public interface MemberRepository extends org.springframework.data.repository.CrudRepository<Member,Long>
Author:
etienne-sf
  • Method Summary

    Modifier and Type
    Method
    Description
    The query for the BatchLoader

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

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAll, findAllById, findById, save, saveAll
  • Method Details

    • findByIds

      @Query("select m from Member m where id in ?1") List<Member> findByIds(List<Long> ids)
      The query for the BatchLoader