Interface PersonRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<PersonEntity,String>, org.springframework.data.neo4j.repository.Neo4jRepository<PersonEntity,String>, org.springframework.data.repository.PagingAndSortingRepository<PersonEntity,String>, org.springframework.data.repository.query.QueryByExampleExecutor<PersonEntity>, org.springframework.data.repository.Repository<PersonEntity,String>

public interface PersonRepository extends org.springframework.data.neo4j.repository.Neo4jRepository<PersonEntity,String>
  • Method Summary

    Modifier and Type
    Method
    Description
    根据 personName 查询

    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.neo4j.repository.Neo4jRepository

    findAll, findAll, findAll, 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

    • findByPersonName

      List<PersonEntity> findByPersonName(String personName)
      根据 personName 查询
      Parameters:
      personName -
      Returns: