repository methods spring boot code example
Example 1: findbyname in jpa
List<User> findTop3ByAge()
Example 2: findbyname in jpa
List<User> findByNameContaining(String infix);
Example 3: findbyname in jpa
List<User> findByBirthDateAfter(ZonedDateTime birthDate);List<User> findByBirthDateBefore(ZonedDateTime birthDate);