Interface TodoRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<Todo,String>, org.springframework.data.repository.PagingAndSortingRepository<Todo,String>, org.springframework.data.repository.Repository<Todo,String>

public interface TodoRepository extends org.springframework.data.repository.CrudRepository<Todo,String>, org.springframework.data.repository.PagingAndSortingRepository<Todo,String>
  • Method Summary

    Modifier and Type
    Method
    Description
    org.springframework.data.domain.Page<Todo>
    findAll(org.springframework.data.domain.Example<Todo> example, org.springframework.data.domain.Pageable pageable)
     

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

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

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

    findAll, findAll
  • Method Details

    • findAll

      org.springframework.data.domain.Page<Todo> findAll(org.springframework.data.domain.Example<Todo> example, org.springframework.data.domain.Pageable pageable)