jpa repository methods code example
Example 1: findbyname in jpa
List<User> findByAgeIn(Collection<Integer> ages);
Example 2: findbyname in jpa
List<User> findByNameIsNot(String name);
Example 3: findbyname in jpa
List<User> findByNameContaining(String infix);
Example 4: findbyname in jpa
List<User> findByBirthDateAfter(ZonedDateTime birthDate);List<User> findByBirthDateBefore(ZonedDateTime birthDate);