Interface UserRepository

All Superinterfaces:
org.springframework.data.repository.reactive.ReactiveCrudRepository<User,Long>, org.springframework.data.repository.Repository<User,Long>

public interface UserRepository extends org.springframework.data.repository.reactive.ReactiveCrudRepository<User,Long>
  • Method Summary

    Modifier and Type
    Method
    Description
    reactor.core.publisher.Mono<User>
     
    reactor.core.publisher.Mono<User>
     

    Methods inherited from interface org.springframework.data.repository.reactive.ReactiveCrudRepository

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

    • findByEmail

      reactor.core.publisher.Mono<User> findByEmail(String email)
    • findByUsername

      reactor.core.publisher.Mono<User> findByUsername(String username)